siemens/mc_tcu3: Fix spelling of *set up*
The verb *set up* is written with a space [1]. So correct that in the function descriptions. [1] http://www.merriam-webster.com/dictionary/set%20up Change-Id: Icf5aa7eca2c379fdf7ff1935d71efc347f5ce6fa Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-on: https://review.coreboot.org/14701 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
7bb37ef068
commit
e8e219d63d
|
@ -36,7 +36,7 @@ u8 get_lcd_panel_type(void)
|
||||||
return ((~lcd_type_gpio) & 0x0f);
|
return ((~lcd_type_gpio) & 0x0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** \brief Setup LCD panel
|
/** \brief Set up LCD panel
|
||||||
* @param no parameters
|
* @param no parameters
|
||||||
* @return 0 on success otherwise error value
|
* @return 0 on success otherwise error value
|
||||||
*/
|
*/
|
||||||
|
@ -70,7 +70,7 @@ int setup_lcd_panel(void)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Now that we have the panel type, setup the DP2LVDS converter */
|
/* Now that we have the panel type, set up the DP2LVDS converter */
|
||||||
status = ptn3460_init(blockname);
|
status = ptn3460_init(blockname);
|
||||||
if (status)
|
if (status)
|
||||||
printk(BIOS_ERR, "LCD: Setup PTN with status 0x%x\n", status);
|
printk(BIOS_ERR, "LCD: Setup PTN with status 0x%x\n", status);
|
||||||
|
|
Loading…
Reference in New Issue