From 2340147dee9fd49fa944218a2a499047bb339322 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Fri, 8 Nov 2013 10:59:32 -0500 Subject: [PATCH] Remove __devinitdata, it's obsolete and breaks compilation on Linux 3.8+ --- ath/if_ath_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ath/if_ath_pci.c b/ath/if_ath_pci.c index 95069b1..b5557e5 100644 --- a/ath/if_ath_pci.c +++ b/ath/if_ath_pci.c @@ -94,7 +94,7 @@ static char *dev_info = "ath_pci"; * "new way" to do things, we may want to switch back to having * the HAL check them by defining a probe method. */ -static struct pci_device_id ath_pci_id_table[] __devinitdata = { +static struct pci_device_id ath_pci_id_table[] = { { 0x168c, 0x0007, PCI_ANY_ID, PCI_ANY_ID }, { 0x168c, 0x0012, PCI_ANY_ID, PCI_ANY_ID }, { 0x168c, 0x0013, PCI_ANY_ID, PCI_ANY_ID }, -- 2.35.1