blob: ec0a3e62d9d4dc6605e0fddca4b7275329dd37cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __BACKPORT_MOD_DEVICETABLE_H
#define __BACKPORT_MOD_DEVICETABLE_H
#include_next <linux/mod_devicetable.h>
#ifndef HID_BUS_ANY
#define HID_BUS_ANY 0xffff
#endif
#ifndef HID_GROUP_ANY
#define HID_GROUP_ANY 0x0000
#endif
#ifndef HID_ANY_ID
#define HID_ANY_ID (~0)
#endif
#endif /* __BACKPORT_MOD_DEVICETABLE_H */
|