diff options
| author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-12-17 16:53:07 +0100 | 
|---|---|---|
| committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-12-17 16:53:07 +0100 | 
| commit | cb5473205206c7f14cbb1e747f28ec75b48826e2 (patch) | |
| tree | 8f4808d60917100b18a10b05230f7638a0a9bbcc /board/Marvell/db64360/pci.c | |
| parent | baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0 (diff) | |
| parent | 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb (diff) | |
| download | olio-uboot-2014.01-cb5473205206c7f14cbb1e747f28ec75b48826e2.tar.xz olio-uboot-2014.01-cb5473205206c7f14cbb1e747f28ec75b48826e2.zip | |
Merge branch 'fixes' into cleanups
Conflicts:
	board/atmel/atngw100/atngw100.c
	board/atmel/atstk1000/atstk1000.c
	cpu/at32ap/at32ap700x/gpio.c
	include/asm-avr32/arch-at32ap700x/clk.h
	include/configs/atngw100.h
	include/configs/atstk1002.h
	include/configs/atstk1003.h
	include/configs/atstk1004.h
	include/configs/atstk1006.h
	include/configs/favr-32-ezkit.h
	include/configs/hammerhead.h
	include/configs/mimc200.h
Diffstat (limited to 'board/Marvell/db64360/pci.c')
| -rw-r--r-- | board/Marvell/db64360/pci.c | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/board/Marvell/db64360/pci.c b/board/Marvell/db64360/pci.c index 563728412..499809514 100644 --- a/board/Marvell/db64360/pci.c +++ b/board/Marvell/db64360/pci.c @@ -52,13 +52,13 @@ static void gt_pci_bus_mode_display (PCI_HOST host)  		printf ("PCI %d bus mode: Conventional PCI\n", host);  		break;  	case 1: -		printf ("PCI %d bus mode: 66 Mhz PCIX\n", host); +		printf ("PCI %d bus mode: 66 MHz PCIX\n", host);  		break;  	case 2: -		printf ("PCI %d bus mode: 100 Mhz PCIX\n", host); +		printf ("PCI %d bus mode: 100 MHz PCIX\n", host);  		break;  	case 3: -		printf ("PCI %d bus mode: 133 Mhz PCIX\n", host); +		printf ("PCI %d bus mode: 133 MHz PCIX\n", host);  		break;  	default:  		printf ("Unknown BUS %d\n", mode); @@ -859,14 +859,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, @@ -901,14 +901,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, |