summaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax/hisax_fcpcipnp.c
diff options
context:
space:
mode:
authorRusty Russell2010-05-20 01:33:38 +0200
committerRusty Russell2010-05-19 10:03:38 +0200
commit031ffd1711bd8bf334ebcbe8ebe34845e6d4678f (patch)
tree8763e5458639f592298810a1f2257ce9b661e54a /drivers/isdn/hisax/hisax_fcpcipnp.c
parentisapnp: move definitions to mod_devicetable.h so file2alias can reach them. (diff)
downloadkernel-qcow2-linux-031ffd1711bd8bf334ebcbe8ebe34845e6d4678f.tar.gz
kernel-qcow2-linux-031ffd1711bd8bf334ebcbe8ebe34845e6d4678f.tar.xz
kernel-qcow2-linux-031ffd1711bd8bf334ebcbe8ebe34845e6d4678f.zip
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)
Diffstat (limited to 'drivers/isdn/hisax/hisax_fcpcipnp.c')
-rw-r--r--drivers/isdn/hisax/hisax_fcpcipnp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/isdn/hisax/hisax_fcpcipnp.c b/drivers/isdn/hisax/hisax_fcpcipnp.c
index 1925118122f8..8b0a7d86b30f 100644
--- a/drivers/isdn/hisax/hisax_fcpcipnp.c
+++ b/drivers/isdn/hisax/hisax_fcpcipnp.c
@@ -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 */