diff options
| author | Stefan Roese <sr@denx.de> | 2008-05-08 11:10:46 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2008-05-08 11:10:46 +0200 | 
| commit | ef2642625cbfb1c3695e3478d08ae515052a4950 (patch) | |
| tree | 715204a37d37f43e60bedab1d6127e627831c90b | |
| parent | a00eccfebc954ad9485161efeca7d9aaf626d530 (diff) | |
| download | olio-uboot-2014.01-ef2642625cbfb1c3695e3478d08ae515052a4950.tar.xz olio-uboot-2014.01-ef2642625cbfb1c3695e3478d08ae515052a4950.zip | |
ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
Signed-off-by: Stefan Roese <sr@denx.de>
| -rw-r--r-- | include/configs/kilauea.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/configs/kilauea.h b/include/configs/kilauea.h index f4cf42c31..57cc90a6d 100644 --- a/include/configs/kilauea.h +++ b/include/configs/kilauea.h @@ -490,7 +490,7 @@   * Some Kilauea stuff..., mainly fpga registers   */  #define CFG_FPGA_REG_BASE		CFG_FPGA_BASE -#define CFG_FPGA_FIFO_BASE		(in32(CFG_FPGA_BASE) | (1 << 11)) +#define CFG_FPGA_FIFO_BASE		(in32(CFG_FPGA_BASE) | (1 << 10))  /* interrupt */  #define CFG_FPGA_SLIC0_R_DPRAM_INT	0x80000000 |