summarylogtreecommitdiffstats
path: root/disable-ff-enabled-check.patch
blob: 2f3677e4991ff276b74bac02c9da8b46ebcbca0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/hid-playstation.c b/hid-playstation.c
index 2f989da..0bb77d9 100644
--- a/hid-playstation.c
+++ b/hid-playstation.c
@@ -442,12 +442,12 @@ static struct input_dev *ps_gamepad_create(struct hid_device *hdev,
 	for (i = 0; i < ARRAY_SIZE(ps_gamepad_buttons); i++)
 		input_set_capability(gamepad, EV_KEY, ps_gamepad_buttons[i]);
 
-#if IS_ENABLED(CONFIG_PLAYSTATION_FF)
+//#if IS_ENABLED(CONFIG_PLAYSTATION_FF)
 	if (play_effect) {
 		input_set_capability(gamepad, EV_FF, FF_RUMBLE);
 		input_ff_create_memless(gamepad, NULL, play_effect);
 	}
-#endif
+//#endif
 
 	ret = input_register_device(gamepad);
 	if (ret)