123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- #ifndef _LINUX_MEI_H
- #define _LINUX_MEI_H
- #include <linux/uuid.h>
- #define IOCTL_MEI_CONNECT_CLIENT \
- _IOWR('H' , 0x01, struct mei_connect_client_data)
- struct mei_client {
- __u32 max_msg_length;
- __u8 protocol_version;
- __u8 reserved[3];
- };
- struct mei_connect_client_data {
- union {
- uuid_le in_client_uuid;
- struct mei_client out_client_properties;
- };
- };
- #define IOCTL_MEI_NOTIFY_SET _IOW('H', 0x02, __u32)
- #define IOCTL_MEI_NOTIFY_GET _IOR('H', 0x03, __u32)
- #endif
|