broadwell: Move platform report output after power state is read

This is a minor tweak to make the console output cleaner
and more consistent with all the reporting of platform data.

BUG=chrome-os-partner:30586
BRANCH=None
TEST=build and boot on samus

Change-Id: Iea7b48f14795bd6061615a68ca25ff52f84abc5a
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/208213
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Duncan Laurie 2014-07-15 16:24:59 -07:00 committed by chrome-internal-fetch
commit acedf4146b

View file

@ -73,15 +73,15 @@ void * asmlinkage romstage_main(unsigned long bist,
/* Start console drivers */
console_init();
/* Get power state */
rp.power_state = fill_power_state();
/* Print useful platform information */
report_platform_info();
/* Set CPU frequency to maximum */
set_max_freq();
/* Get power state */
rp.power_state = fill_power_state();
/* Call into mainboard. */
mainboard_romstage_entry(&rp);