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 /cpu/mpc8260/cpu.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 'cpu/mpc8260/cpu.c')
| -rw-r--r-- | cpu/mpc8260/cpu.c | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c index efb8ed6f4..9f834d3e5 100644 --- a/cpu/mpc8260/cpu.c +++ b/cpu/mpc8260/cpu.c @@ -61,7 +61,7 @@ extern int get_cpu_str_f (char *buf);  int checkcpu (void)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	ulong clock = gd->cpu_clk;  	uint pvr = get_pvr ();  	uint immr, rev, m, k; @@ -88,7 +88,7 @@ int checkcpu (void)  	rev = pvr & 0xff;  	immr = immap->im_memctl.memc_immr; -	if ((immr & IMMR_ISB_MSK) != CFG_IMMR) +	if ((immr & IMMR_ISB_MSK) != CONFIG_SYS_IMMR)  		return -1;	/* whoops! someone moved the IMMR */  #if defined(CONFIG_GET_CPU_STR_F) @@ -178,7 +178,7 @@ int checkcpu (void)  void upmconfig (uint upm, uint * table, uint size)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile memctl8260_t *memctl = &immap->im_memctl;  	volatile uchar *dummy = (uchar *) BRx_BA_MSK;	/* set all BA bits */  	uint i; @@ -241,7 +241,7 @@ do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  {  	ulong msr, addr; -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	immap->im_clkrst.car_rmr = RMR_CSRE;	/* Checkstop Reset enable */ @@ -255,15 +255,15 @@ do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  	 * Trying to execute the next instruction at a non-existing address  	 * should cause a machine check, resulting in reset  	 */ -#ifdef CFG_RESET_ADDRESS -	addr = CFG_RESET_ADDRESS; +#ifdef CONFIG_SYS_RESET_ADDRESS +	addr = CONFIG_SYS_RESET_ADDRESS;  #else  	/* -	 * note: when CFG_MONITOR_BASE points to a RAM address, CFG_MONITOR_BASE +	 * note: when CONFIG_SYS_MONITOR_BASE points to a RAM address, CONFIG_SYS_MONITOR_BASE  	 * - sizeof (ulong) is usually a valid address. Better pick an address -	 * known to be invalid on your system and assign it to CFG_RESET_ADDRESS. +	 * known to be invalid on your system and assign it to CONFIG_SYS_RESET_ADDRESS.  	 */ -	addr = CFG_MONITOR_BASE - sizeof (ulong); +	addr = CONFIG_SYS_MONITOR_BASE - sizeof (ulong);  #endif  	((void (*)(void)) addr) ();  	return 1; @@ -293,7 +293,7 @@ void watchdog_reset (void)  {  	int re_enable = disable_interrupts (); -	reset_8260_watchdog ((immap_t *) CFG_IMMR); +	reset_8260_watchdog ((immap_t *) CONFIG_SYS_IMMR);  	if (re_enable)  		enable_interrupts ();  } |