dect
/
linux-2.6
Archived
13
0
Fork 0

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: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (split patch)
This commit is contained in:
Rusty Russell 2010-05-19 17:33:38 -06:00
parent 90def62df6
commit 031ffd1711
1 changed files with 2 additions and 1 deletions

View File

@ -74,9 +74,10 @@ static struct pnp_device_id fcpnp_ids[] __devinitdata = {
.id = "AVM0900",
.driver_data = (unsigned long) "Fritz!Card PnP",
},
{ .id = "" }
};
MODULE_DEVICE_TABLE(isapnp, fcpnp_ids);
MODULE_DEVICE_TABLE(pnp, fcpnp_ids);
#endif
static int protocol = 2; /* EURO-ISDN Default */