summaryrefslogtreecommitdiff
path: root/include/linux/device-id/serio.h
blob: b4c02adf220c46125c9b576dc3194ed999bde364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_DEVICE_ID_SERIO_H
#define LINUX_DEVICE_ID_SERIO_H

#ifdef __KERNEL__
#include <linux/types.h>
#endif

#define SERIO_ANY	0xff

struct serio_device_id {
	__u8 type;
	__u8 extra;
	__u8 id;
	__u8 proto;
};

#endif /* ifndef LINUX_DEVICE_ID_SERIO_H */