diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:30:47 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:30:47 +0200 | 
| commit | 2e6e1772c0e34871769be4aef79748fe3e47d953 (patch) | |
| tree | 00e4e19d7bccd2a1cd5753854ff4c2b8a26bebb0 /arch/powerpc/cpu/mpc83xx/pci.c | |
| parent | 1e4e5ef0469050f014aee1204dae8a9ab6053e49 (diff) | |
| parent | 3df61957938586c512c17e72d83551d190400981 (diff) | |
| download | olio-uboot-2014.01-2e6e1772c0e34871769be4aef79748fe3e47d953.tar.xz olio-uboot-2014.01-2e6e1772c0e34871769be4aef79748fe3e47d953.zip | |
Merge branch 'next' of /home/wd/git/u-boot/next
Conflicts:
	include/ppc4xx.h
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'arch/powerpc/cpu/mpc83xx/pci.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc83xx/pci.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/powerpc/cpu/mpc83xx/pci.c b/arch/powerpc/cpu/mpc83xx/pci.c index a42b230ff..288d99ffc 100644 --- a/arch/powerpc/cpu/mpc83xx/pci.c +++ b/arch/powerpc/cpu/mpc83xx/pci.c @@ -133,7 +133,7 @@ static void pci_init_bus(int bus, struct pci_region *reg)   * If fewer than three regions are requested, then the region   * list is terminated with a region of size 0.   */ -void mpc83xx_pci_init(int num_buses, struct pci_region **reg, int warmboot) +void mpc83xx_pci_init(int num_buses, struct pci_region **reg)  {  	volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;  	int i; @@ -150,9 +150,9 @@ void mpc83xx_pci_init(int num_buses, struct pci_region **reg, int warmboot)  	/*  	 * Release PCI RST Output signal.  	 * Power on to RST high must be at least 100 ms as per PCI spec. -	 * On warm boots only 1 ms is required. +	 * On warm boots only 1 ms is required, but we play it safe.  	 */ -	udelay(warmboot ? 1000 : 100000); +	udelay(100000);  	for (i = 0; i < num_buses; i++)  		immr->pci_ctrl[i].gcr = 1; |