diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-31 18:32:53 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-31 18:32:53 +0200 | 
| commit | d87080b721e4f8dca977af7571c5338ae7bb8db7 (patch) | |
| tree | 514fc21eec39a2dd57f7aea516844a4400f8f140 /cpu/mpc8xx/serial.c | |
| parent | f6dbbe986481cff01334c64cacb971a5f237a9a9 (diff) | |
| download | olio-uboot-2014.01-d87080b721e4f8dca977af7571c5338ae7bb8db7.tar.xz olio-uboot-2014.01-d87080b721e4f8dca977af7571c5338ae7bb8db7.zip | |
GCC-4.x fixes: clean up global data pointer initialization for all boards.
Diffstat (limited to 'cpu/mpc8xx/serial.c')
| -rw-r--r-- | cpu/mpc8xx/serial.c | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/cpu/mpc8xx/serial.c b/cpu/mpc8xx/serial.c index fa0405f19..26a82cc24 100644 --- a/cpu/mpc8xx/serial.c +++ b/cpu/mpc8xx/serial.c @@ -27,6 +27,8 @@  #include <serial.h>  #include <watchdog.h> +DECLARE_GLOBAL_DATA_PTR; +  #if !defined(CONFIG_8xx_CONS_NONE)	/* No Console at all */  #if defined(CONFIG_8xx_CONS_SMC1)	/* Console on SMC1 */ @@ -65,7 +67,6 @@  static void serial_setdivisor(volatile cpm8xx_t *cp)  { -	DECLARE_GLOBAL_DATA_PTR;  	int divisor=(gd->cpu_clk + 8*gd->baudrate)/16/gd->baudrate;  	if(divisor/16>0x1000) { @@ -268,8 +269,6 @@ smc_putc(const char c)  	volatile cpm8xx_t	*cpmp = &(im->im_cpm);  #ifdef CONFIG_MODEM_SUPPORT -	DECLARE_GLOBAL_DATA_PTR; -  	if (gd->be_quiet)  		return;  #endif @@ -553,8 +552,6 @@ scc_putc(const char c)  	volatile cpm8xx_t	*cpmp = &(im->im_cpm);  #ifdef CONFIG_MODEM_SUPPORT -	DECLARE_GLOBAL_DATA_PTR; -  	if (gd->be_quiet)  		return;  #endif @@ -649,13 +646,11 @@ struct serial_device serial_scc_device =  #ifdef CONFIG_MODEM_SUPPORT  void disable_putc(void)  { -	DECLARE_GLOBAL_DATA_PTR;  	gd->be_quiet = 1;  }  void enable_putc(void)  { -	DECLARE_GLOBAL_DATA_PTR;  	gd->be_quiet = 0;  }  #endif |