thp: madvise(MADV_NOHUGEPAGE)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / ssb / b43_pci_bridge.c
blob744d3f6e470987c773f72a733dbbc146fa358706
1 /*
2 * Broadcom 43xx PCI-SSB bridge module
4 * This technically is a separate PCI driver module, but
5 * because of its small size we include it in the SSB core
6 * instead of creating a standalone module.
8 * Copyright 2007 Michael Buesch <mb@bu3sch.de>
10 * Licensed under the GNU/GPL. See COPYING for details.
13 #include <linux/pci.h>
14 #include <linux/ssb/ssb.h>
16 #include "ssb_private.h"
19 static const struct pci_device_id b43_pci_bridge_tbl[] = {
20 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
21 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
22 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
23 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
24 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
25 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
26 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
27 { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
28 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) },
29 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) },
30 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) },
31 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
32 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) },
33 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
34 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
35 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) },
36 { 0, },
38 MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
40 static struct pci_driver b43_pci_bridge_driver = {
41 .name = "b43-pci-bridge",
42 .id_table = b43_pci_bridge_tbl,
46 int __init b43_pci_ssb_bridge_init(void)
48 return ssb_pcihost_register(&b43_pci_bridge_driver);
51 void __exit b43_pci_ssb_bridge_exit(void)
53 ssb_pcihost_unregister(&b43_pci_bridge_driver);