hwmon: (adm1275) Enable adm1278 VOUT sampling
[linux-2.6/btrfs-unstable.git] / drivers / hid / hid-lg.h
blob10dd8f0241352544b24bc057c861cc04415292ec
1 #ifndef __HID_LG_H
2 #define __HID_LG_H
4 struct lg_drv_data {
5 unsigned long quirks;
6 void *device_props; /* Device specific properties */
7 };
9 #ifdef CONFIG_LOGITECH_FF
10 int lgff_init(struct hid_device *hdev);
11 #else
12 static inline int lgff_init(struct hid_device *hdev) { return -1; }
13 #endif
15 #ifdef CONFIG_LOGIRUMBLEPAD2_FF
16 int lg2ff_init(struct hid_device *hdev);
17 #else
18 static inline int lg2ff_init(struct hid_device *hdev) { return -1; }
19 #endif
21 #ifdef CONFIG_LOGIG940_FF
22 int lg3ff_init(struct hid_device *hdev);
23 #else
24 static inline int lg3ff_init(struct hid_device *hdev) { return -1; }
25 #endif
27 #endif