| /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| * Copyright (c) 1999-2000 Vojtech Pavlik |
| * Should you need to contact me, the author, you can do so either by |
| * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail: |
| * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic |
| #include <uapi/linux/hiddev.h> |
| struct mutex existancelock; |
| int hiddev_connect(struct hid_device *hid, unsigned int force); |
| void hiddev_disconnect(struct hid_device *); |
| void hiddev_hid_event(struct hid_device *hid, struct hid_field *field, |
| struct hid_usage *usage, __s32 value); |
| void hiddev_report_event(struct hid_device *hid, struct hid_report *report); |
| static inline int hiddev_connect(struct hid_device *hid, |
| static inline void hiddev_disconnect(struct hid_device *hid) { } |
| static inline void hiddev_hid_event(struct hid_device *hid, struct hid_field *field, |
| struct hid_usage *usage, __s32 value) { } |
| static inline void hiddev_report_event(struct hid_device *hid, struct hid_report *report) { } |