[coreboot-gerrit] Patch set updated for coreboot: lenovo/x60: add info message if dock is present

Alexander Couzens (lynxis@fe80.eu) gerrit at coreboot.org
Wed Aug 10 13:21:31 CEST 2016


Alexander Couzens (lynxis at fe80.eu) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16136

-gerrit

commit 855641c2afc615b2dcc6efcbfd7709092202c37c
Author: Alexander Couzens <lynxis at fe80.eu>
Date:   Wed Aug 10 13:17:18 2016 +0200

    lenovo/x60: add info message if dock is present
    
    Change-Id: I5a6d41f815f65719780499fa18c131311a9dc8f7
    Signed-off-by: Alexander Couzens <lynxis at fe80.eu>
---
 src/mainboard/lenovo/x60/romstage.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/mainboard/lenovo/x60/romstage.c b/src/mainboard/lenovo/x60/romstage.c
index 1f249a6..d033a63 100644
--- a/src/mainboard/lenovo/x60/romstage.c
+++ b/src/mainboard/lenovo/x60/romstage.c
@@ -232,8 +232,11 @@ void mainboard_romstage_entry(unsigned long bist)
 	 *  if we're undocked.
 	 */
 	if (dock_present()) {
+		printk(BIOS_INFO, "Dock is present\n");
 		dock_connect();
 		early_superio_config();
+	} else {
+		printk(BIOS_INFO, "Dock is not present\n");
 	}
 
 	/* Set up the console */



More information about the coreboot-gerrit mailing list