Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
ee1d2001
Commit
ee1d2001
authored
Oct 20, 2008
by
Mike Frysinger
Browse files
Blackfin: dont check baud if it wont actually get used
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
400f5778
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpu/blackfin/initcode.c
View file @
ee1d2001
...
...
@@ -61,7 +61,11 @@ static inline uint32_t serial_init(void)
}
#endif
uint32_t
old_baud
=
serial_early_get_baud
();
uint32_t
old_baud
;
if
(
BFIN_DEBUG_EARLY_SERIAL
||
CONFIG_BFIN_BOOT_MODE
==
BFIN_BOOT_UART
)
old_baud
=
serial_early_get_baud
();
else
old_baud
=
CONFIG_BAUDRATE
;
if
(
BFIN_DEBUG_EARLY_SERIAL
)
{
serial_early_init
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment