diff options
| author | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
|---|---|---|
| committer | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
| commit | 50bd0057ba8fceeb48533f8b1a652ccd0e170838 (patch) | |
| tree | ea1a183343573c2a48248923b96d316c0956727c /drivers/pci/pci_auto.c | |
| parent | 9dbc366744960013965fce8851035b6141f3b3ae (diff) | |
| parent | f82642e33899766892499b163e60560fbbf87773 (diff) | |
| download | olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.tar.xz olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.zip | |
Merge git://git.denx.de/u-boot into x1
Conflicts:
	drivers/usb/usb_ohci.c
Diffstat (limited to 'drivers/pci/pci_auto.c')
| -rw-r--r-- | drivers/pci/pci_auto.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto.c index 2acf9bf78..384435951 100644 --- a/drivers/pci/pci_auto.c +++ b/drivers/pci/pci_auto.c @@ -26,9 +26,9 @@  #define	PCIAUTO_IDE_MODE_MASK		0x05 -/* the user can define CFG_PCI_CACHE_LINE_SIZE to avoid problems */ -#ifndef CFG_PCI_CACHE_LINE_SIZE -#define CFG_PCI_CACHE_LINE_SIZE	8 +/* the user can define CONFIG_SYS_PCI_CACHE_LINE_SIZE to avoid problems */ +#ifndef CONFIG_SYS_PCI_CACHE_LINE_SIZE +#define CONFIG_SYS_PCI_CACHE_LINE_SIZE	8  #endif  /* @@ -154,7 +154,7 @@ void pciauto_setup_device(struct pci_controller *hose,  	pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);  	pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, -		CFG_PCI_CACHE_LINE_SIZE); +		CONFIG_SYS_PCI_CACHE_LINE_SIZE);  	pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);  } |