blob: abcbb3cb1e6072b24f1f81c0b893186e458176a0 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
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 */
Christopher Ferris05d08e92016-02-04 13:16:38 -08007#ifndef _USERIO_H
8#define _USERIO_H
9#include <linux/types.h>
10enum userio_cmd_type {
Christopher Ferris05d08e92016-02-04 13:16:38 -080011 USERIO_CMD_REGISTER = 0,
12 USERIO_CMD_SET_PORT_TYPE = 1,
13 USERIO_CMD_SEND_INTERRUPT = 2
14};
Christopher Ferris05d08e92016-02-04 13:16:38 -080015struct userio_cmd {
16 __u8 type;
17 __u8 data;
18} __attribute__((__packed__));
Christopher Ferris05d08e92016-02-04 13:16:38 -080019#endif