diff options
author | Lionel Debroux <lionel_debroux@yahoo.fr> | 2012-02-27 10:41:47 +0400 |
---|---|---|
committer | Borislav Petkov <bp@alien8.de> | 2012-03-19 15:04:54 +0400 |
commit | 36c46f31df910b092aaaed27c7c616bb8e2302a1 (patch) | |
tree | cc46fcc301511b0780625d037ac19d24c065ca43 /drivers/edac/amd64_edac.c | |
parent | 5e8e19bf6c3c9d8ecf74e2a7fdae99a76949bdf6 (diff) | |
download | linux-36c46f31df910b092aaaed27c7c616bb8e2302a1.tar.xz |
EDAC: Make pci_device_id tables __devinitconst.
These const tables are currently marked __devinitdata, but
Documentation/PCI/pci.txt says:
"o The ID table array should be marked __devinitconst; this is done
automatically if the table is declared with DEFINE_PCI_DEVICE_TABLE()."
So use DEFINE_PCI_DEVICE_TABLE(x).
Based on PaX and earlier work by Andi Kleen.
Signed-off-by: Lionel Debroux <lionel_debroux@yahoo.fr>
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Diffstat (limited to 'drivers/edac/amd64_edac.c')
-rw-r--r-- | drivers/edac/amd64_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index 03807283aca4..7ef73c919c5d 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c @@ -2707,7 +2707,7 @@ static void __devexit amd64_remove_one_instance(struct pci_dev *pdev) * PCI core identifies what devices are on a system during boot, and then * inquiry this table to see if this driver is for a given device found. */ -static const struct pci_device_id amd64_pci_table[] __devinitdata = { +static DEFINE_PCI_DEVICE_TABLE(amd64_pci_table) = { { .vendor = PCI_VENDOR_ID_AMD, .device = PCI_DEVICE_ID_AMD_K8_NB_MEMCTL, |