blob: e050abebbf3de6cc67bda6e46e0b89772d44bdcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_DEVICE_ID_AP_H
#define LINUX_DEVICE_ID_AP_H
#ifdef __KERNEL__
#include <linux/types.h>
#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 */
|