diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:24:38 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:52:40 -0500 |
commit | 2c68506412e96d0e306be6057e824478a2deccbd (patch) | |
tree | 6d0d6feb345879b7e257003d8252744858cfd904 /drivers/misc | |
parent | 80c8ae289266529445fad030fabf5fcf01ccda0d (diff) |
misc: 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: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/phantom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/phantom.c b/drivers/misc/phantom.c index 394150df2afe..035776342a4c 100644 --- a/drivers/misc/phantom.c +++ b/drivers/misc/phantom.c | |||
@@ -487,7 +487,7 @@ static int phantom_resume(struct pci_dev *pdev) | |||
487 | #define phantom_resume NULL | 487 | #define phantom_resume NULL |
488 | #endif | 488 | #endif |
489 | 489 | ||
490 | static struct pci_device_id phantom_pci_tbl[] __devinitdata = { | 490 | static struct pci_device_id phantom_pci_tbl[] = { |
491 | { .vendor = PCI_VENDOR_ID_PLX, .device = PCI_DEVICE_ID_PLX_9050, | 491 | { .vendor = PCI_VENDOR_ID_PLX, .device = PCI_DEVICE_ID_PLX_9050, |
492 | .subvendor = PCI_VENDOR_ID_PLX, .subdevice = PCI_DEVICE_ID_PLX_9050, | 492 | .subvendor = PCI_VENDOR_ID_PLX, .subdevice = PCI_DEVICE_ID_PLX_9050, |
493 | .class = PCI_CLASS_BRIDGE_OTHER << 8, .class_mask = 0xffff00 }, | 493 | .class = PCI_CLASS_BRIDGE_OTHER << 8, .class_mask = 0xffff00 }, |