diff options
Diffstat (limited to 'arch/powerpc/include')
| -rw-r--r-- | arch/powerpc/include/asm/global_data.h | 2 | ||||
| -rw-r--r-- | arch/powerpc/include/asm/u-boot.h | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h index 5a5877fc2..374fc6d5a 100644 --- a/arch/powerpc/include/asm/global_data.h +++ b/arch/powerpc/include/asm/global_data.h @@ -38,7 +38,7 @@  typedef	struct	global_data {  	bd_t		*bd;  	unsigned long	flags; -	unsigned long	baudrate; +	unsigned int	baudrate;  	unsigned long	cpu_clk;	/* CPU clock in Hz! */  	unsigned long	bus_clk;  #if defined(CONFIG_8xx) diff --git a/arch/powerpc/include/asm/u-boot.h b/arch/powerpc/include/asm/u-boot.h index b2fa2b574..7229a98ea 100644 --- a/arch/powerpc/include/asm/u-boot.h +++ b/arch/powerpc/include/asm/u-boot.h @@ -81,7 +81,7 @@ typedef struct bd_info {  	unsigned long	bi_ipbfreq;	/* IPB Bus Freq, in MHz */  	unsigned long	bi_pcifreq;	/* PCI Bus Freq, in MHz */  #endif -	unsigned long	bi_baudrate;	/* Console Baudrate */ +	unsigned int	bi_baudrate;	/* Console Baudrate */  #if defined(CONFIG_405)   || \      defined(CONFIG_405GP) || \      defined(CONFIG_405CR) || \ |