diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:24:13 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 12:40:42 -0800 |
commit | 7eeb741895ea8926e6064dd0bbb349c6ebc09e8b (patch) | |
tree | f001674c2a17c83efabb3252f837de1a5bf48ef2 /drivers/firewire | |
parent | 03f94c0f6215fa0cc471d07ffb3c4bcb1a0889c1 (diff) | |
download | linux-3.10-7eeb741895ea8926e6064dd0bbb349c6ebc09e8b.tar.gz linux-3.10-7eeb741895ea8926e6064dd0bbb349c6ebc09e8b.tar.bz2 linux-3.10-7eeb741895ea8926e6064dd0bbb349c6ebc09e8b.zip |
firewire: 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>
Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/nosy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/nosy.c b/drivers/firewire/nosy.c index 7a712b9ffb1..76b2d390f6e 100644 --- a/drivers/firewire/nosy.c +++ b/drivers/firewire/nosy.c @@ -683,7 +683,7 @@ fail_disable: return ret; } -static struct pci_device_id pci_table[] __devinitdata = { +static struct pci_device_id pci_table[] = { { .vendor = PCI_VENDOR_ID_TI, .device = PCI_DEVICE_ID_TI_PCILYNX, |