/* SPDX-License-Identifier: GPL-2.0 */ #ifndef LINUX_DEVICE_ID_AP_H #define LINUX_DEVICE_ID_AP_H #ifdef __KERNEL__ #include #endif #define AP_DEVICE_ID_MATCH_CARD_TYPE 0x01 #define AP_DEVICE_ID_MATCH_QUEUE_TYPE 0x02 /* s390 AP bus devices */ struct ap_device_id { __u16 match_flags; /* which fields to match against */ __u8 dev_type; /* device type */ }; #endif /* ifndef LINUX_DEVICE_ID_AP_H */