projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90def62
)
hisax_fcpcipnp: fix broken isapnp device table.
author
Rusty Russell
<rusty@rustcorp.com.au>
Wed, 19 May 2010 23:33:38 +0000
(17:33 -0600)
committer
Rusty Russell
<rusty@rustcorp.com.au>
Wed, 19 May 2010 08:03:38 +0000
(17:33 +0930)
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)
drivers/isdn/hisax/hisax_fcpcipnp.c
patch
|
blob
|
history
diff --git
a/drivers/isdn/hisax/hisax_fcpcipnp.c
b/drivers/isdn/hisax/hisax_fcpcipnp.c
index 1925118122f877bdb2313d64f7fc8478e678e141..8b0a7d86b30ff1dc62bb769973b511fde7fb03d9 100644
(file)
--- 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(
isa
pnp, fcpnp_ids);
+MODULE_DEVICE_TABLE(pnp, fcpnp_ids);
#endif
static int protocol = 2; /* EURO-ISDN Default */