diff options
author | Simon Glass <sjg@chromium.org> | 2012-10-12 14:21:13 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-19 15:25:45 -0700 |
commit | 7a68e330d04548b8fef4c7fcb9a365ae42d6ce35 (patch) | |
tree | 565050648b9d26114d1988854b1f7185b8e857aa /arch/openrisc/include/asm/global_data.h | |
parent | 7fffe2fac8a467a9eddf7f2306e1b5f7c3fae186 (diff) | |
download | u-boot-7a68e330d04548b8fef4c7fcb9a365ae42d6ce35.tar.gz |
openrisc: 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>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/openrisc/include/asm/global_data.h')
-rw-r--r-- | arch/openrisc/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/openrisc/include/asm/global_data.h b/arch/openrisc/include/asm/global_data.h index 6a0c0cc547..96f3f1cdbb 100644 --- a/arch/openrisc/include/asm/global_data.h +++ b/arch/openrisc/include/asm/global_data.h @@ -35,7 +35,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 have_console; /* serial_init() was called */ phys_size_t ram_size; /* RAM size */ |