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/m8xx_pcmcia.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/m8xx_pcmcia.c')
-rw-r--r-- | drivers/pcmcia/m8xx_pcmcia.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/pcmcia/m8xx_pcmcia.c b/drivers/pcmcia/m8xx_pcmcia.c index a317defd616d..a3a851e49321 100644 --- a/drivers/pcmcia/m8xx_pcmcia.c +++ b/drivers/pcmcia/m8xx_pcmcia.c | |||
@@ -1303,15 +1303,4 @@ static struct platform_driver m8xx_pcmcia_driver = { | |||
1303 | .remove = m8xx_remove, | 1303 | .remove = m8xx_remove, |
1304 | }; | 1304 | }; |
1305 | 1305 | ||
1306 | static int __init m8xx_init(void) | 1306 | module_platform_driver(m8xx_pcmcia_driver); |
1307 | { | ||
1308 | return platform_driver_register(&m8xx_pcmcia_driver); | ||
1309 | } | ||
1310 | |||
1311 | static void __exit m8xx_exit(void) | ||
1312 | { | ||
1313 | platform_driver_unregister(&m8xx_pcmcia_driver); | ||
1314 | } | ||
1315 | |||
1316 | module_init(m8xx_init); | ||
1317 | module_exit(m8xx_exit); | ||