mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
PCI: portdrv: Make explicitly non-modular
This code is not being built as a module by anyone: pcieportdrv-y := portdrv_core.o portdrv_pci.o portdrv_bus.o obj-$(CONFIG_PCIEPORTBUS) += pcieportdrv.o drivers/pci/pcie/Kconfig:config PCIEPORTBUS drivers/pci/pcie/Kconfig: bool "PCI Express Port Bus support" Remove uses of MODULE_DESCRIPTION(), MODULE_AUTHOR(), MODULE_LICENSE(), etc., so that when reading the driver there is no doubt it is builtin-only. The information is preserved in comments at the top of the file. Note that for non-modular code, MODULE_DEVICE_TABLE is a no-op and module_init() translates to device_initcall(). [bhelgaas: changelog, remove unused DRIVER_* macros] Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> CC: Tom Long Nguyen <tom.l.nguyen@intel.com>
This commit is contained in:
parent
f90d8e84c3
commit
a7dadf45ae
@ -1,12 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* File: portdrv_pci.c
|
* File: portdrv_pci.c
|
||||||
* Purpose: PCI Express Port Bus Driver
|
* Purpose: PCI Express Port Bus Driver
|
||||||
|
* Author: Tom Nguyen <tom.l.nguyen@intel.com>
|
||||||
|
* Version: v1.0
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004 Intel
|
* Copyright (C) 2004 Intel
|
||||||
* Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
|
* Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/module.h>
|
|
||||||
#include <linux/pci.h>
|
#include <linux/pci.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/errno.h>
|
#include <linux/errno.h>
|
||||||
@ -21,16 +22,6 @@
|
|||||||
#include "portdrv.h"
|
#include "portdrv.h"
|
||||||
#include "aer/aerdrv.h"
|
#include "aer/aerdrv.h"
|
||||||
|
|
||||||
/*
|
|
||||||
* Version Information
|
|
||||||
*/
|
|
||||||
#define DRIVER_VERSION "v1.0"
|
|
||||||
#define DRIVER_AUTHOR "tom.l.nguyen@intel.com"
|
|
||||||
#define DRIVER_DESC "PCIe Port Bus Driver"
|
|
||||||
MODULE_AUTHOR(DRIVER_AUTHOR);
|
|
||||||
MODULE_DESCRIPTION(DRIVER_DESC);
|
|
||||||
MODULE_LICENSE("GPL");
|
|
||||||
|
|
||||||
/* If this switch is set, PCIe port native services should not be enabled. */
|
/* If this switch is set, PCIe port native services should not be enabled. */
|
||||||
bool pcie_ports_disabled;
|
bool pcie_ports_disabled;
|
||||||
|
|
||||||
@ -341,7 +332,6 @@ static const struct pci_device_id port_pci_ids[] = { {
|
|||||||
PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0),
|
PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0),
|
||||||
}, { /* end: all zeroes */ }
|
}, { /* end: all zeroes */ }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(pci, port_pci_ids);
|
|
||||||
|
|
||||||
static const struct pci_error_handlers pcie_portdrv_err_handler = {
|
static const struct pci_error_handlers pcie_portdrv_err_handler = {
|
||||||
.error_detected = pcie_portdrv_error_detected,
|
.error_detected = pcie_portdrv_error_detected,
|
||||||
@ -406,5 +396,4 @@ static int __init pcie_portdrv_init(void)
|
|||||||
out:
|
out:
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
device_initcall(pcie_portdrv_init);
|
||||||
module_init(pcie_portdrv_init);
|
|
||||||
|
Loading…
Reference in New Issue
Block a user