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)
---
 drivers/isdn/hisax/hisax_fcpcipnp.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff -u
--- linux-source-2.6.32-orig/drivers/isdn/hisax/hisax_fcpcipnp.c	2009-12-03 04:51:21.000000000 +0100
+++ linux-source-2.6.32/drivers/isdn/hisax/hisax_fcpcipnp.c	2009-12-17 23:55:08.000000000 +0100
@@ -74,9 +74,10 @@ static struct pnp_device_id fcpnp_ids[] 
 		.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 */


