diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2006-11-11 09:53:19 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-11-13 03:49:25 (GMT) |
commit | 19a79859e168640f8e16d7b216d211c1c52b687a (patch) | |
tree | 6a7d0467b26bd1470679b486899c48258a611b73 /include/asm-powerpc/mpc85xx.h | |
parent | b61c5509fe8f6c665c146ab14f960000d4a5d1a9 (diff) | |
download | linux-19a79859e168640f8e16d7b216d211c1c52b687a.tar.xz |
[PATCH] ppc: Fix io.h for config with CONFIG_PCI not set
When CONFIG_PCI option is not set, the variables
pci_dram_offset, isa_io_base and isa_mem_base are not defined.
Currently, the test is handled in each platform header. This
patch moves the test in io.h once and for all.
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/mpc85xx.h')
-rw-r--r-- | include/asm-powerpc/mpc85xx.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/asm-powerpc/mpc85xx.h b/include/asm-powerpc/mpc85xx.h index ccdb8a2..5414299 100644 --- a/include/asm-powerpc/mpc85xx.h +++ b/include/asm-powerpc/mpc85xx.h @@ -31,14 +31,6 @@ #include <platforms/85xx/mpc85xx_cds.h> #endif -#define _IO_BASE isa_io_base -#define _ISA_MEM_BASE isa_mem_base -#ifdef CONFIG_PCI -#define PCI_DRAM_OFFSET pci_dram_offset -#else -#define PCI_DRAM_OFFSET 0 -#endif - /* Let modules/drivers get at CCSRBAR */ extern phys_addr_t get_ccsrbar(void); |