diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-10-05 09:06:16 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-10-05 09:06:16 +0000 |
commit | c8489ba3f8ccf07975f58a0408eee07551561931 (patch) | |
tree | 59a1df2fe69be3626b461de5e1bceed62b579da9 /target | |
parent | e555522b95189ec245a3c9b5ed54b6c301a13502 (diff) | |
download | upstream-c8489ba3f8ccf07975f58a0408eee07551561931.tar.gz upstream-c8489ba3f8ccf07975f58a0408eee07551561931.tar.bz2 upstream-c8489ba3f8ccf07975f58a0408eee07551561931.zip |
ramips: remove unneccesary ifdefs from the rt288x pci code
SVN-Revision: 17862
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/files/arch/mips/pci/ops-rt288x.c | 3 | ||||
-rw-r--r-- | target/linux/ramips/files/arch/mips/pci/pci-rt288x.c | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/target/linux/ramips/files/arch/mips/pci/ops-rt288x.c b/target/linux/ramips/files/arch/mips/pci/ops-rt288x.c index de2be44153..c851e522ca 100644 --- a/target/linux/ramips/files/arch/mips/pci/ops-rt288x.c +++ b/target/linux/ramips/files/arch/mips/pci/ops-rt288x.c @@ -5,8 +5,6 @@ #include <asm/mach-ralink/rt288x.h> #include <asm/mach-ralink/rt288x_pci.h> -#ifdef CONFIG_PCI - #define PCI_ACCESS_READ 0 #define PCI_ACCESS_WRITE 1 @@ -62,4 +60,3 @@ pci_config_write(struct pci_bus *bus, unsigned int devfn, return PCIBIOS_DEVICE_NOT_FOUND; return PCIBIOS_SUCCESSFUL; } -#endif diff --git a/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c b/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c index 891a9f8f0f..6bf4f4f489 100644 --- a/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c +++ b/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c @@ -6,8 +6,6 @@ #include <asm/mach-ralink/rt288x.h> #include <asm/mach-ralink/rt288x_pci.h> -#ifdef CONFIG_PCI - extern int pci_config_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val); extern int pci_config_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val); @@ -126,5 +124,3 @@ struct pci_fixup pcibios_fixups[] = { }; arch_initcall(init_rt2880pci); - -#endif |