lenovo/x60: add info message if dock is present
Change-Id: I5a6d41f815f65719780499fa18c131311a9dc8f7 Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-on: https://review.coreboot.org/16136 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
d6f7fd5261
commit
6e1884ff5d
|
@ -244,6 +244,11 @@ void mainboard_romstage_entry(unsigned long bist)
|
||||||
/* Set up the console */
|
/* Set up the console */
|
||||||
console_init();
|
console_init();
|
||||||
|
|
||||||
|
if (dock_present())
|
||||||
|
printk(BIOS_DEBUG, "Dock is present\n");
|
||||||
|
else
|
||||||
|
printk(BIOS_DEBUG, "Dock is not present\n");
|
||||||
|
|
||||||
/* Halt if there was a built in self test failure */
|
/* Halt if there was a built in self test failure */
|
||||||
report_bist_failure(bist);
|
report_bist_failure(bist);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue