diff options
Diffstat (limited to 'board/amcc/bubinga/bubinga.c')
| -rw-r--r-- | board/amcc/bubinga/bubinga.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/amcc/bubinga/bubinga.c b/board/amcc/bubinga/bubinga.c index 74a2a1c21..d0aebec2c 100644 --- a/board/amcc/bubinga/bubinga.c +++ b/board/amcc/bubinga/bubinga.c @@ -41,9 +41,9 @@ int board_early_init_f(void)  	 * and enable the internal PCI arbiter if selected  	 */  	if (in_8((void *)FPGA_REG1) & FPGA_REG1_PCI_INT_ARB) -		mtdcr(cpc0_pci, CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN); +		mtdcr(CPC0_PCI, CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN);  	else -		mtdcr(cpc0_pci, CPC0_PCI_HOST_CFG_EN); +		mtdcr(CPC0_PCI, CPC0_PCI_HOST_CFG_EN);  	return 0;  } |