diff options
| author | Simon Glass <sjg@chromium.org> | 2012-10-12 14:21:09 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-10-19 15:25:44 -0700 | 
| commit | 15dc95d48a1c46c0bc738c1857665e61d8ad0b7c (patch) | |
| tree | 6082c405b4a99c812212ffd7bdbd6240295841f4 /arch/avr32/include/asm/global_data.h | |
| parent | ecd4551f14418abda71607946134fb40253b843b (diff) | |
| download | olio-uboot-2014.01-15dc95d48a1c46c0bc738c1857665e61d8ad0b7c.tar.xz olio-uboot-2014.01-15dc95d48a1c46c0bc738c1857665e61d8ad0b7c.zip  | |
avr32: Change bi_baudrate and global data baudrate to int
These don't need to be longs, so change them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Andreas Bießmann <andreas.devel@googlemail.com>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/avr32/include/asm/global_data.h')
| -rw-r--r-- | arch/avr32/include/asm/global_data.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/include/asm/global_data.h b/arch/avr32/include/asm/global_data.h index 7878bb185..bf661e23b 100644 --- a/arch/avr32/include/asm/global_data.h +++ b/arch/avr32/include/asm/global_data.h @@ -33,7 +33,7 @@  typedef	struct	global_data {  	bd_t		*bd;  	unsigned long	flags; -	unsigned long	baudrate; +	unsigned int	baudrate;  	unsigned long	stack_end;	/* highest stack address */  	unsigned long	have_console;	/* serial_init() was called */  #ifdef CONFIG_PRE_CONSOLE_BUFFER  |