diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /board/prodrive/p3mx/pci.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/prodrive/p3mx/pci.c')
| -rw-r--r-- | board/prodrive/p3mx/pci.c | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/board/prodrive/p3mx/pci.c b/board/prodrive/p3mx/pci.c index 137739bed..85f7caab0 100644 --- a/board/prodrive/p3mx/pci.c +++ b/board/prodrive/p3mx/pci.c @@ -932,14 +932,14 @@ void pci_init_board (void)  	/* PCI memory space */  	pci_set_region (pci0_hose.regions + 0, -			CFG_PCI0_0_MEM_SPACE, -			CFG_PCI0_0_MEM_SPACE, -			CFG_PCI0_MEM_SIZE, PCI_REGION_MEM); +			CONFIG_SYS_PCI0_0_MEM_SPACE, +			CONFIG_SYS_PCI0_0_MEM_SPACE, +			CONFIG_SYS_PCI0_MEM_SIZE, PCI_REGION_MEM);  	/* PCI I/O space */  	pci_set_region (pci0_hose.regions + 1, -			CFG_PCI0_IO_SPACE_PCI, -			CFG_PCI0_IO_SPACE, CFG_PCI0_IO_SIZE, PCI_REGION_IO); +			CONFIG_SYS_PCI0_IO_SPACE_PCI, +			CONFIG_SYS_PCI0_IO_SPACE, CONFIG_SYS_PCI0_IO_SIZE, PCI_REGION_IO);  	pci_set_ops (&pci0_hose,  		     pci_hose_read_config_byte_via_dword, @@ -981,14 +981,14 @@ void pci_init_board (void)  	/* PCI memory space */  	pci_set_region (pci1_hose.regions + 0, -			CFG_PCI1_0_MEM_SPACE, -			CFG_PCI1_0_MEM_SPACE, -			CFG_PCI1_MEM_SIZE, PCI_REGION_MEM); +			CONFIG_SYS_PCI1_0_MEM_SPACE, +			CONFIG_SYS_PCI1_0_MEM_SPACE, +			CONFIG_SYS_PCI1_MEM_SIZE, PCI_REGION_MEM);  	/* PCI I/O space */  	pci_set_region (pci1_hose.regions + 1, -			CFG_PCI1_IO_SPACE_PCI, -			CFG_PCI1_IO_SPACE, CFG_PCI1_IO_SIZE, PCI_REGION_IO); +			CONFIG_SYS_PCI1_IO_SPACE_PCI, +			CONFIG_SYS_PCI1_IO_SPACE, CONFIG_SYS_PCI1_IO_SIZE, PCI_REGION_IO);  	pci_set_ops (&pci1_hose,  		     pci_hose_read_config_byte_via_dword, |