Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
b43_pci_bridge.c
Go to the documentation of this file.
1 /*
2  * Broadcom 43xx PCI-SSB bridge module
3  *
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.
7  *
8  * Copyright 2007 Michael Buesch <[email protected]>
9  *
10  * Licensed under the GNU/GPL. See COPYING for details.
11  */
12 
13 #include <linux/pci.h>
14 #include <linux/module.h>
15 #include <linux/ssb/ssb.h>
16 
17 #include "ssb_private.h"
18 
19 
20 static const struct pci_device_id b43_pci_bridge_tbl[] = {
28  { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
40  { 0, },
41 };
42 MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
43 
44 static struct pci_driver b43_pci_bridge_driver = {
45  .name = "b43-pci-bridge",
46  .id_table = b43_pci_bridge_tbl,
47 };
48 
49 
51 {
52  return ssb_pcihost_register(&b43_pci_bridge_driver);
53 }
54 
56 {
57  ssb_pcihost_unregister(&b43_pci_bridge_driver);
58 }