blob: ce2ac86726245e984829680ba64a77d5bd38a5f2 [file] [log] [blame]
Jiri Slaby606bd0a2008-07-04 23:06:45 +02001#ifndef __HID_LG_H
2#define __HID_LG_H
3
Jiri Slaby606bd0a2008-07-04 23:06:45 +02004#ifdef CONFIG_LOGITECH_FF
5int lgff_init(struct hid_device *hdev);
6#else
7static inline int lgff_init(struct hid_device *hdev) { return -1; }
8#endif
9
10#ifdef CONFIG_LOGIRUMBLEPAD2_FF
11int lg2ff_init(struct hid_device *hdev);
12#else
13static inline int lg2ff_init(struct hid_device *hdev) { return -1; }
14#endif
15
Gary Stein74f292c2010-01-13 00:25:58 +010016#ifdef CONFIG_LOGIG940_FF
17int lg3ff_init(struct hid_device *hdev);
18#else
19static inline int lg3ff_init(struct hid_device *hdev) { return -1; }
20#endif
21
Jiri Slaby606bd0a2008-07-04 23:06:45 +020022#endif