Commit 031ffd17 authored by Rusty Russell's avatar Rusty Russell

hisax_fcpcipnp: fix broken isapnp device table.

Found that drivers/isdn/hisax/hisax_fcpcipnp.c has broken pnp device table -
wrong type (isapnp instead of pnp) and also ending record missing.
Signed-off-by: default avatarOndrej Zary <linux@rainbow-software.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (split patch)
parent 90def62d
...@@ -74,9 +74,10 @@ static struct pnp_device_id fcpnp_ids[] __devinitdata = { ...@@ -74,9 +74,10 @@ static struct pnp_device_id fcpnp_ids[] __devinitdata = {
.id = "AVM0900", .id = "AVM0900",
.driver_data = (unsigned long) "Fritz!Card PnP", .driver_data = (unsigned long) "Fritz!Card PnP",
}, },
{ .id = "" }
}; };
MODULE_DEVICE_TABLE(isapnp, fcpnp_ids); MODULE_DEVICE_TABLE(pnp, fcpnp_ids);
#endif #endif
static int protocol = 2; /* EURO-ISDN Default */ static int protocol = 2; /* EURO-ISDN Default */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment