blob: ba659c32650a31113cc9e25493d7b48fab3da9b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_DEVICE_ID_ISAPNP_H
#define LINUX_DEVICE_ID_ISAPNP_H
#ifdef __KERNEL__
typedef unsigned long kernel_ulong_t;
#endif
#define ISAPNP_ANY_ID 0xffff
struct isapnp_device_id {
unsigned short card_vendor, card_device;
unsigned short vendor, function;
kernel_ulong_t driver_data; /* data private to the driver */
};
#endif /* ifndef LINUX_DEVICE_ID_ISAPNP_H */
|