/* * Broadcom 43xx PCI-SSB bridge module * * This technically is a separate PCI driver module, but * because of its small size we include it in the SSB core * instead of creating a standalone module. * * Copyright 2007 Michael Buesch <[email protected]> * * Licensed under the GNU/GPL. See COPYING for details. */ #include "ssb_private.h" #include <linux/pci.h> #include <linux/module.h> #include <linux/ssb/ssb.h> static const struct pci_device_id b43_pci_bridge_tbl[] = …; MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl); static struct pci_driver b43_pci_bridge_driver = …; int __init b43_pci_ssb_bridge_init(void) { … } void __exit b43_pci_ssb_bridge_exit(void) { … }