blob: e5c55d515ac27dc74a798fd575872bc35cf04686 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Michal Malýa54dc7792015-02-18 17:59:22 +01002#ifndef __HID_LG4FF_H
3#define __HID_LG4FF_H
4
5#ifdef CONFIG_LOGIWHEELS_FF
6extern int lg4ff_no_autoswitch; /* From hid-lg.c */
7
8int lg4ff_adjust_input_event(struct hid_device *hid, struct hid_field *field,
Michal Malý2a552c32015-04-08 22:56:39 +02009 struct hid_usage *usage, s32 value, struct lg_drv_data *drv_data);
Simon Woodc832f862016-09-18 10:55:38 -060010int lg4ff_raw_event(struct hid_device *hdev, struct hid_report *report,
11 u8 *rd, int size, struct lg_drv_data *drv_data);
Michal Malýa54dc7792015-02-18 17:59:22 +010012int lg4ff_init(struct hid_device *hdev);
13int lg4ff_deinit(struct hid_device *hdev);
14#else
15static inline int lg4ff_adjust_input_event(struct hid_device *hid, struct hid_field *field,
Michal Malý2a552c32015-04-08 22:56:39 +020016 struct hid_usage *usage, s32 value, struct lg_drv_data *drv_data) { return 0; }
Simon Woodc832f862016-09-18 10:55:38 -060017static inline int lg4ff_raw_event(struct hid_device *hdev, struct hid_report *report,
18 u8 *rd, int size, struct lg_drv_data *drv_data) { return 0; }
Michal Malýa54dc7792015-02-18 17:59:22 +010019static inline int lg4ff_init(struct hid_device *hdev) { return -1; }
20static inline int lg4ff_deinit(struct hid_device *hdev) { return -1; }
21#endif
22
23#endif