diff options
| -rw-r--r-- | arch/x86/include/asm/global_data.h | 2 | ||||
| -rw-r--r-- | common/cmd_bdinfo.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index 6d29c0b9a..bce999f41 100644 --- a/arch/x86/include/asm/global_data.h +++ b/arch/x86/include/asm/global_data.h @@ -38,7 +38,7 @@ typedef	struct global_data {  	unsigned long	gd_addr;	/* Location of Global Data */  	bd_t		*bd;  	unsigned long	flags; -	unsigned long	baudrate; +	unsigned int	baudrate;  	unsigned long	have_console;	/* serial_init() was called */  #ifdef CONFIG_PRE_CONSOLE_BUFFER  	unsigned long	precon_buf_idx;	/* Pre-Console buffer index */ diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index 656c56553..48cdd16dd 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -439,7 +439,7 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  	printf("ip_addr     = %s\n", getenv("ipaddr"));  	print_mhz("ethspeed",	    bd->bi_ethspeed);  #endif -	printf("baudrate    = %d bps\n", bd->bi_baudrate); +	printf("baudrate    = %u bps\n", bd->bi_baudrate);  	return 0;  } |