configs/skp16c26/ostest: Configuration converted to use the kconfig-frontends tools

This commit is contained in:
Gregory Nutt 2014-03-06 08:28:49 -06:00
parent d62967bf8d
commit 597c60a72d
2 changed files with 3 additions and 5 deletions

View File

@ -230,7 +230,7 @@ extern void board_led_off(int led);
/* Defined in board/up_lcd.c */
#ifdef CONFIG_ARCH_LCD
#ifdef CONFIG_LCD_CONSOLE
extern void up_lcdinit(void);
extern void up_lcdputc(char ch);
#else

View File

@ -333,11 +333,9 @@ void up_lowsetup(void)
up_lowserialsetup()
#endif
/* The LCD is initialized here to because it may be that the LCD is
* used for console output.
*/
/* The LCD is initialized here if the LCD is used for console output. */
#ifdef CONFIG_ARCH_LCD
#ifdef CONFIG_LCD_CONSOLE
up_lcdinit();
#endif
}