irda: fix !PNP support for drivers/net/irda/smsc-ircc2.c

x86.git testing found this build bug on v2.6.26-rc1:

ERROR: "pnp_get_resource" [drivers/net/irda/smsc-ircc2.ko] undefined!
make[1]: *** [__modpost] Error 1
make: *** [modules] Error 2

the driver did not anticipate the case of !CONFIG_PNP which is rare but
still possible. Instead of restricting the driver to PNP-only in the
Kconfig space, add the (trivial) dummy struct pnp_driver - this is that
other drivers use in the !PNP case too.

The driver itself can in theory be initialized on !PNP too in certain
cases, via smsc_ircc_legacy_probe().

Patch only minimally build tested, i dont have this hardware.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Ingo Molnar and committed by David S. Miller 7a1aa309 c17f888f

+4 -1
+4 -1
drivers/net/irda/smsc-ircc2.c
··· 376 377 static int pnp_driver_registered; 378 379 static int __init smsc_ircc_pnp_probe(struct pnp_dev *dev, 380 const struct pnp_device_id *dev_id) 381 { ··· 403 .id_table = smsc_ircc_pnp_table, 404 .probe = smsc_ircc_pnp_probe, 405 }; 406 - 407 408 /******************************************************************************* 409 *
··· 376 377 static int pnp_driver_registered; 378 379 + #ifdef CONFIG_PNP 380 static int __init smsc_ircc_pnp_probe(struct pnp_dev *dev, 381 const struct pnp_device_id *dev_id) 382 { ··· 402 .id_table = smsc_ircc_pnp_table, 403 .probe = smsc_ircc_pnp_probe, 404 }; 405 + #else /* CONFIG_PNP */ 406 + static struct pnp_driver smsc_ircc_pnp_driver; 407 + #endif 408 409 /******************************************************************************* 410 *