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