aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pcmcia/xxs1500_ss.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-03-29 19:00:48 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-03-29 19:00:48 -0400
commita6f707b601c3f85d4b816ea08a757ea1af4f1cc0 (patch)
tree86cea1675e515c6baca64cea812ebe2ccc6aa955 /drivers/pcmcia/xxs1500_ss.c
parentef08e78268423fc4d7fbc3e54bd9a67fc8da7cc5 (diff)
parent80af9e6d7ae633309cc5bca96aee6a45117e7c98 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia
Pull a few PCMCIA updates from Dominik Brodowski. Fix up trivial conflict (modified code in question had been removed) in drivers/pcmcia/soc_common.c. * git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia: pcmcia at91_cf: fix raw gpio number usage ARM: pxa: fix error handling in pxa2xx_drv_pcmcia_probe pcmcia: Convert to DEFINE_PCI_DEVICE_TABLE pcmcia: convert drivers/pcmcia/* to use module_platform_driver() pcmcia: irq: Remove IRQF_DISABLED
Diffstat (limited to 'drivers/pcmcia/xxs1500_ss.c')
-rw-r--r--drivers/pcmcia/xxs1500_ss.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/pcmcia/xxs1500_ss.c b/drivers/pcmcia/xxs1500_ss.c
index 8f6698074f8e..fd5fbd10aad0 100644
--- a/drivers/pcmcia/xxs1500_ss.c
+++ b/drivers/pcmcia/xxs1500_ss.c
@@ -320,18 +320,7 @@ static struct platform_driver xxs1500_pcmcia_socket_driver = {
320 .remove = __devexit_p(xxs1500_pcmcia_remove), 320 .remove = __devexit_p(xxs1500_pcmcia_remove),
321}; 321};
322 322
323int __init xxs1500_pcmcia_socket_load(void) 323module_platform_driver(xxs1500_pcmcia_socket_driver);
324{
325 return platform_driver_register(&xxs1500_pcmcia_socket_driver);
326}
327
328void __exit xxs1500_pcmcia_socket_unload(void)
329{
330 platform_driver_unregister(&xxs1500_pcmcia_socket_driver);
331}
332
333module_init(xxs1500_pcmcia_socket_load);
334module_exit(xxs1500_pcmcia_socket_unload);
335 324
336MODULE_LICENSE("GPL"); 325MODULE_LICENSE("GPL");
337MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems"); 326MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems");