diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-29 19:00:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-29 19:00:48 -0400 |
commit | a6f707b601c3f85d4b816ea08a757ea1af4f1cc0 (patch) | |
tree | 86cea1675e515c6baca64cea812ebe2ccc6aa955 /drivers/pcmcia/xxs1500_ss.c | |
parent | ef08e78268423fc4d7fbc3e54bd9a67fc8da7cc5 (diff) | |
parent | 80af9e6d7ae633309cc5bca96aee6a45117e7c98 (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.c | 13 |
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 | ||
323 | int __init xxs1500_pcmcia_socket_load(void) | 323 | module_platform_driver(xxs1500_pcmcia_socket_driver); |
324 | { | ||
325 | return platform_driver_register(&xxs1500_pcmcia_socket_driver); | ||
326 | } | ||
327 | |||
328 | void __exit xxs1500_pcmcia_socket_unload(void) | ||
329 | { | ||
330 | platform_driver_unregister(&xxs1500_pcmcia_socket_driver); | ||
331 | } | ||
332 | |||
333 | module_init(xxs1500_pcmcia_socket_load); | ||
334 | module_exit(xxs1500_pcmcia_socket_unload); | ||
335 | 324 | ||
336 | MODULE_LICENSE("GPL"); | 325 | MODULE_LICENSE("GPL"); |
337 | MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems"); | 326 | MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems"); |