xref: /openbmc/linux/drivers/hid/hid-lg.h (revision 9d56dd3b083a3bec56e9da35ce07baca81030b03)
1 #ifndef __HID_LG_H
2 #define __HID_LG_H
3 
4 #ifdef CONFIG_LOGITECH_FF
5 int lgff_init(struct hid_device *hdev);
6 #else
7 static inline int lgff_init(struct hid_device *hdev) { return -1; }
8 #endif
9 
10 #ifdef CONFIG_LOGIRUMBLEPAD2_FF
11 int lg2ff_init(struct hid_device *hdev);
12 #else
13 static inline int lg2ff_init(struct hid_device *hdev) { return -1; }
14 #endif
15 
16 #endif
17