diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:24:37 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 14:49:40 -0500 |
commit | a5977246cfa44f70d7230f530918b7b7a06ad2eb (patch) | |
tree | 18ebd8f9d4b54b6f9ce3908e63e25aab334be199 /drivers/hwmon/i5k_amb.c | |
parent | 6c931ae1c09a9618852c9619dac71f1f77776e3b (diff) |
hwmon: remove use of __devinitdata
CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Jean Delvare <khali@linux-fr.org>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwmon/i5k_amb.c')
-rw-r--r-- | drivers/hwmon/i5k_amb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/i5k_amb.c b/drivers/hwmon/i5k_amb.c index 0d0faf056ae3..f3bc723c930c 100644 --- a/drivers/hwmon/i5k_amb.c +++ b/drivers/hwmon/i5k_amb.c | |||
@@ -488,14 +488,14 @@ out: | |||
488 | static struct { | 488 | static struct { |
489 | unsigned long err; | 489 | unsigned long err; |
490 | unsigned long fbd0; | 490 | unsigned long fbd0; |
491 | } chipset_ids[] __devinitdata = { | 491 | } chipset_ids[] = { |
492 | { PCI_DEVICE_ID_INTEL_5000_ERR, PCI_DEVICE_ID_INTEL_5000_FBD0 }, | 492 | { PCI_DEVICE_ID_INTEL_5000_ERR, PCI_DEVICE_ID_INTEL_5000_FBD0 }, |
493 | { PCI_DEVICE_ID_INTEL_5400_ERR, PCI_DEVICE_ID_INTEL_5400_FBD0 }, | 493 | { PCI_DEVICE_ID_INTEL_5400_ERR, PCI_DEVICE_ID_INTEL_5400_FBD0 }, |
494 | { 0, 0 } | 494 | { 0, 0 } |
495 | }; | 495 | }; |
496 | 496 | ||
497 | #ifdef MODULE | 497 | #ifdef MODULE |
498 | static struct pci_device_id i5k_amb_ids[] __devinitdata = { | 498 | static struct pci_device_id i5k_amb_ids[] = { |
499 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) }, | 499 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) }, |
500 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5400_ERR) }, | 500 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5400_ERR) }, |
501 | { 0, } | 501 | { 0, } |