1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef LINUX_DEVICE_ID_SERIO_H 3 #define LINUX_DEVICE_ID_SERIO_H 4 5 #ifdef __KERNEL__ 6 #include <linux/types.h> 7 #endif 8 9 #define SERIO_ANY 0xff 10 11 struct serio_device_id { 12 __u8 type; 13 __u8 extra; 14 __u8 id; 15 __u8 proto; 16 }; 17 18 #endif /* ifndef LINUX_DEVICE_ID_SERIO_H */ 19