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 _UAPI_LINUX_VIRTIO_I2C_H 8 #define _UAPI_LINUX_VIRTIO_I2C_H 9 #include <linux/const.h> 10 #include <linux/types.h> 11 #define VIRTIO_I2C_F_ZERO_LENGTH_REQUEST 0 12 #define VIRTIO_I2C_FLAGS_FAIL_NEXT _BITUL(0) 13 #define VIRTIO_I2C_FLAGS_M_RD _BITUL(1) 14 struct virtio_i2c_out_hdr { 15 __le16 addr; 16 __le16 padding; 17 __le32 flags; 18 }; 19 struct virtio_i2c_in_hdr { 20 __u8 status; 21 }; 22 #define VIRTIO_I2C_MSG_OK 0 23 #define VIRTIO_I2C_MSG_ERR 1 24 #endif 25