diff options
author | Matthew McClintock <msm@freescale.com> | 2006-06-28 10:44:23 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-08-09 13:50:35 -0500 |
commit | a4e11558b810ef2cddffdf7b9d86bc1130441960 (patch) | |
tree | fe469ec63a50133ee2a779bc4d9284caadce8026 /drivers/pci_auto.c | |
parent | 0e16387db1d4aacd5bf35cb6d7c1942765c0347b (diff) | |
download | u-boot-imx-a4e11558b810ef2cddffdf7b9d86bc1130441960.zip u-boot-imx-a4e11558b810ef2cddffdf7b9d86bc1130441960.tar.gz u-boot-imx-a4e11558b810ef2cddffdf7b9d86bc1130441960.tar.bz2 |
* Made sure the code which disables prefetch for PCI devices sets the size of the prefetch region to 0 Patch by Andy Fleming on 17-Mar-2006
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'drivers/pci_auto.c')
-rw-r--r-- | drivers/pci_auto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci_auto.c b/drivers/pci_auto.c index 15f7432..8fde330 100644 --- a/drivers/pci_auto.c +++ b/drivers/pci_auto.c @@ -186,7 +186,7 @@ static void pciauto_prescan_setup_bridge(struct pci_controller *hose, } else { /* We don't support prefetchable memory for now, so disable */ pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000); - pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x1000); + pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0); } if (pci_io) { |