diff options
| author | Wolfgang Denk <wd@denx.de> | 2007-09-12 00:48:57 +0200 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-09-12 00:48:57 +0200 |
| commit | f34024d4a328e6edd906456da98d2c537155c4f7 (patch) | |
| tree | ffb2156471629c6c7312cf2c24a59ecf11cf06ea /board/stxssa/stxssa.c | |
| parent | 38ad82da0c1180ecdeb212a8f4245e945bcc546e (diff) | |
| download | olio-uboot-2014.01-f34024d4a328e6edd906456da98d2c537155c4f7.tar.xz olio-uboot-2014.01-f34024d4a328e6edd906456da98d2c537155c4f7.zip | |
Fix memory corruption problem on STX GP3 SSA Board.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/stxssa/stxssa.c')
| -rw-r--r-- | board/stxssa/stxssa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/stxssa/stxssa.c b/board/stxssa/stxssa.c index 9a2bfbef8..9bacb98d8 100644 --- a/board/stxssa/stxssa.c +++ b/board/stxssa/stxssa.c @@ -381,9 +381,11 @@ static struct pci_config_table pci_stxgp3_config_table[] = { static struct pci_controller hose[] = { #ifndef CONFIG_PCI_PNP { config_table: pci_stxgp3_config_table,}, -#ifdef CONFIG_MPC85XX_PCI2 +#else {}, #endif +#ifdef CONFIG_MPC85XX_PCI2 + {}, #endif }; |