diff options
author | Stefan Roese <sr@denx.de> | 2006-03-13 09:43:01 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-03-13 09:43:01 +0100 |
commit | f3fecfe6d7cf07a2c5879d64fc1d849a94a0b67d (patch) | |
tree | 9224b6a021696d59b19096d207bba79e1b579536 /cpu | |
parent | 9a7b408c116e1fcb4de607ddee15834319cd1ea0 (diff) | |
download | u-boot-f3fecfe6d7cf07a2c5879d64fc1d849a94a0b67d.zip u-boot-f3fecfe6d7cf07a2c5879d64fc1d849a94a0b67d.tar.gz u-boot-f3fecfe6d7cf07a2c5879d64fc1d849a94a0b67d.tar.bz2 |
Fix problem with updated PCI code in cpu/ppc4xx/405gp_pci.c
Patch by Stefan Roese, 13 Mar 2006
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ppc4xx/405gp_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ppc4xx/405gp_pci.c b/cpu/ppc4xx/405gp_pci.c index f6b29e9..947b85e 100644 --- a/cpu/ppc4xx/405gp_pci.c +++ b/cpu/ppc4xx/405gp_pci.c @@ -373,7 +373,7 @@ void pci_405gp_setup_vga(struct pci_controller *hose, pci_dev_t dev, { unsigned int cmdstat = 0; - pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_io); + pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io); /* always enable io space on vga boards */ pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat); |