diff options
author | Simon Glass <sjg@chromium.org> | 2012-10-12 14:21:20 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-19 15:25:46 -0700 |
commit | 55f97c1bfb3eb71e623576179fc0b995d0fd18ad (patch) | |
tree | 4384ebd46c73bd414265c8dfd1dbaa8d63441411 /arch/x86 | |
parent | a25356d77143b3ecf3695b5b71c5abbdca6da079 (diff) | |
download | u-boot-imx-55f97c1bfb3eb71e623576179fc0b995d0fd18ad.zip u-boot-imx-55f97c1bfb3eb71e623576179fc0b995d0fd18ad.tar.gz u-boot-imx-55f97c1bfb3eb71e623576179fc0b995d0fd18ad.tar.bz2 |
x86: Change global data baudrate to int
This doesn't need to be a long, so change it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index 6d29c0b..bce999f 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 */ |