UPSTREAM: soc/apollolake/romstage: Call console_init before any printk()
Follow the convention used on all other platforms and explicitly call console_init() before any printk(). This call was most likely ommitted by accident during rebase. Also remove the "Starting romstage..." message, as console_init() will print a standardized message. I don't have details on how this message originally appeared. BUG=None BRANCH=None TEST=None Change-Id: Id91f0fc15ecbd3635d67a261907f4c6af9a499ab Original-Signed-off-by: Alexandru Gagniuc <alexandrux.gagniuc@intel.com> Original-Reviewed-on: https://review.coreboot.org/14864 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Original-Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/346982 Commit-Ready: Martin Roth <martinroth@chromium.org> Tested-by: Martin Roth <martinroth@chromium.org> Reviewed-by: Martin Roth <martinroth@chromium.org>
This commit is contained in:
parent
f54215a500
commit
812a8ab922
1 changed files with 2 additions and 2 deletions
|
|
@ -127,12 +127,12 @@ asmlinkage void car_stage_entry(void)
|
|||
struct romstage_handoff *handoff;
|
||||
struct chipset_power_state *ps = car_get_var_ptr(&power_state);
|
||||
|
||||
printk(BIOS_DEBUG, "Starting romstage...\n");
|
||||
|
||||
soc_early_romstage_init();
|
||||
|
||||
disable_watchdog();
|
||||
|
||||
console_init();
|
||||
|
||||
prev_sleep_state = fill_power_state(ps);
|
||||
|
||||
/* Make sure the blob does not override our data in CAR */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue