diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2010-05-20 03:33:38 +0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2010-05-19 12:03:38 +0400 |
commit | 90def62df67b423c4c976bc30eccb5957b7befda (patch) | |
tree | d13b19e2ff84625ae14341fa6d79fc6f2f696602 /include/linux/mod_devicetable.h | |
parent | 537b60d17894b7c19a6060feae40299d7109d6e7 (diff) | |
download | linux-90def62df67b423c4c976bc30eccb5957b7befda.tar.xz |
isapnp: move definitions to mod_devicetable.h so file2alias can reach them.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/mod_devicetable.h')
-rw-r--r-- | include/linux/mod_devicetable.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 56fde4364e4c..d7707004b4b0 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -483,4 +483,11 @@ struct zorro_device_id { #define ZORRO_DEVICE_MODALIAS_FMT "zorro:i%08X" +#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 /* LINUX_MOD_DEVICETABLE_H */ |