Skip to content

Commit

Permalink
hisax_fcpcipnp: fix broken isapnp device table.
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
Rusty Russell committed May 19, 2010
1 parent 90def62 commit 031ffd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/isdn/hisax/hisax_fcpcipnp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 031ffd1

Please sign in to comment.