diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-01-23 08:52:18 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-01-23 08:52:18 +0000 |
commit | 0dc4edde27b02c3ff1d10b8ad16f2391b114f141 (patch) | |
tree | 9320d7d4e9cf859b670b5c42fc757842cfe50f0a /target/linux | |
parent | fa34189a176636de92c5ed7e3cca5bd50a3e35cd (diff) | |
download | master-187ad058-0dc4edde27b02c3ff1d10b8ad16f2391b114f141.tar.gz master-187ad058-0dc4edde27b02c3ff1d10b8ad16f2391b114f141.tar.bz2 master-187ad058-0dc4edde27b02c3ff1d10b8ad16f2391b114f141.zip |
ar71xx: fix compiler warning if PCI is not enabled
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29869 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-eap7660d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-eap7660d.c b/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-eap7660d.c index d1e49eef05..6187cba422 100644 --- a/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-eap7660d.c +++ b/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-eap7660d.c @@ -39,6 +39,7 @@ #define EAP7660D_WMAC0_CALDATA_OFFSET 0x2000 #define EAP7660D_WMAC1_CALDATA_OFFSET 0x3000 +#ifdef CONFIG_PCI static struct ath5k_platform_data eap7660d_wmac0_data; static struct ath5k_platform_data eap7660d_wmac1_data; static char eap7660d_wmac0_mac[6]; @@ -46,7 +47,6 @@ static char eap7660d_wmac1_mac[6]; static u16 eap7660d_wmac0_eeprom[ATH5K_PLAT_EEP_MAX_WORDS]; static u16 eap7660d_wmac1_eeprom[ATH5K_PLAT_EEP_MAX_WORDS]; -#ifdef CONFIG_PCI static struct ar71xx_pci_irq eap7660d_pci_irqs[] __initdata = { { .slot = 0, |