From: Bill Pemberton Date: Mon, 19 Nov 2012 18:24:38 +0000 (-0500) Subject: misc: remove use of __devinitdata X-Git-Tag: accepted/tizen/common/20141203.182822~3199^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c68506412e96d0e306be6057e824478a2deccbd;p=platform%2Fkernel%2Flinux-arm64.git misc: remove use of __devinitdata CONFIG_HOTPLUG is going away as an option so __devinitdata is no longer needed. Signed-off-by: Bill Pemberton Cc: Jiri Slaby Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/phantom.c b/drivers/misc/phantom.c index 394150d..0357763 100644 --- a/drivers/misc/phantom.c +++ b/drivers/misc/phantom.c @@ -487,7 +487,7 @@ static int phantom_resume(struct pci_dev *pdev) #define phantom_resume NULL #endif -static struct pci_device_id phantom_pci_tbl[] __devinitdata = { +static struct pci_device_id phantom_pci_tbl[] = { { .vendor = PCI_VENDOR_ID_PLX, .device = PCI_DEVICE_ID_PLX_9050, .subvendor = PCI_VENDOR_ID_PLX, .subdevice = PCI_DEVICE_ID_PLX_9050, .class = PCI_CLASS_BRIDGE_OTHER << 8, .class_mask = 0xffff00 },