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/i82092.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/i82092.c')
-rw-r--r-- | drivers/pcmcia/i82092.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/pcmcia/i82092.c b/drivers/pcmcia/i82092.c index 0b66bfc0e148..4e8831bdb6ef 100644 --- a/drivers/pcmcia/i82092.c +++ b/drivers/pcmcia/i82092.c | |||
@@ -25,14 +25,9 @@ | |||
25 | MODULE_LICENSE("GPL"); | 25 | MODULE_LICENSE("GPL"); |
26 | 26 | ||
27 | /* PCI core routines */ | 27 | /* PCI core routines */ |
28 | static struct pci_device_id i82092aa_pci_ids[] = { | 28 | static DEFINE_PCI_DEVICE_TABLE(i82092aa_pci_ids) = { |
29 | { | 29 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82092AA_0) }, |
30 | .vendor = PCI_VENDOR_ID_INTEL, | 30 | { } |
31 | .device = PCI_DEVICE_ID_INTEL_82092AA_0, | ||
32 | .subvendor = PCI_ANY_ID, | ||
33 | .subdevice = PCI_ANY_ID, | ||
34 | }, | ||
35 | {} | ||
36 | }; | 31 | }; |
37 | MODULE_DEVICE_TABLE(pci, i82092aa_pci_ids); | 32 | MODULE_DEVICE_TABLE(pci, i82092aa_pci_ids); |
38 | 33 | ||