1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _USERIO_H
8 #define _USERIO_H
9 #include <linux/types.h>
10 enum userio_cmd_type {
11   USERIO_CMD_REGISTER = 0,
12   USERIO_CMD_SET_PORT_TYPE = 1,
13   USERIO_CMD_SEND_INTERRUPT = 2
14 };
15 struct userio_cmd {
16   __u8 type;
17   __u8 data;
18 } __attribute__((__packed__));
19 #endif
20