module: remove MODULE_GENERIC_TABLE
MODULE_DEVICE_TABLE() calles MODULE_GENERIC_TABLE(); make it do the work directly. This also removes a wart introduced in the last patch, where the alias is defined to be an unknown struct type "struct type##__##name##_device_id" instead of "struct type##_device_id" (it's an extern so GCC doesn't care, but it's wrong). The other user of MODULE_GENERIC_TABLE (ISAPNP_CARD_TABLE) is unused, so delete it. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -56,10 +56,6 @@
|
||||
#define ISAPNP_DEVICE_ID(_va, _vb, _vc, _function) \
|
||||
{ .vendor = ISAPNP_VENDOR(_va, _vb, _vc), .function = ISAPNP_FUNCTION(_function) }
|
||||
|
||||
/* export used IDs outside module */
|
||||
#define ISAPNP_CARD_TABLE(name) \
|
||||
MODULE_GENERIC_TABLE(isapnp_card, name)
|
||||
|
||||
struct isapnp_card_id {
|
||||
unsigned long driver_data; /* data private to the driver */
|
||||
unsigned short card_vendor, card_device;
|
||||
|
||||
Reference in New Issue
Block a user