diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2016-05-07 08:24:49 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-05-09 05:30:05 +0200 |
commit | 7bb37ef0686b3604855071eb3aee04cfe6796c89 (patch) | |
tree | c1a92e26d3c6d5a9be16703bf6dab9948d28eaf1 | |
parent | 78021190058462bf2ed7da33d3327bd9ebc5ab82 (diff) | |
download | coreboot-7bb37ef0686b3604855071eb3aee04cfe6796c89.tar.xz |
siemens/mc_tcu3: Add blank lines for better legibility
Change-Id: I6d1200dd59e53ca892594c1fce784639a9817550
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/14700
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | src/mainboard/siemens/mc_tcu3/lcd_panel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/siemens/mc_tcu3/lcd_panel.c b/src/mainboard/siemens/mc_tcu3/lcd_panel.c index 50fedf4409..c3471691a9 100644 --- a/src/mainboard/siemens/mc_tcu3/lcd_panel.c +++ b/src/mainboard/siemens/mc_tcu3/lcd_panel.c @@ -48,6 +48,7 @@ int setup_lcd_panel(void) lcd_type = get_lcd_panel_type(); printk(BIOS_INFO, "LCD: Found panel type %d\n", lcd_type); + switch (lcd_type) { case LCD_PANEL_TYPE_10_INCH: strcpy(blockname, "hwinfo10.hex"); @@ -68,6 +69,7 @@ int setup_lcd_panel(void) printk(BIOS_ERR, "LCD: No supported panel found.\n"); break; } + /* Now that we have the panel type, setup the DP2LVDS converter */ status = ptn3460_init(blockname); if (status) |