From b262b5a5c69de0d0c304d3f1e1cd72c17ced05b8 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 4 Apr 2015 11:49:15 -0600 Subject: More renaming: up_lcdinitialize->board_lcd_initialize, up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize --- nuttx/configs/stm3220g-eval/src/stm32_lcd.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'nuttx/configs/stm3220g-eval') diff --git a/nuttx/configs/stm3220g-eval/src/stm32_lcd.c b/nuttx/configs/stm3220g-eval/src/stm32_lcd.c index 39878b296..d173cb2c0 100644 --- a/nuttx/configs/stm3220g-eval/src/stm32_lcd.c +++ b/nuttx/configs/stm3220g-eval/src/stm32_lcd.c @@ -53,6 +53,7 @@ #include #include +#include #include #include @@ -1122,7 +1123,7 @@ static inline void stm3220g_lcdinitialize(void) **************************************************************************************/ /************************************************************************************** - * Name: up_lcdinitialize + * Name: board_lcd_initialize * * Description: * Initialize the LCD video hardware. The initial state of the LCD is fully @@ -1131,7 +1132,7 @@ static inline void stm3220g_lcdinitialize(void) * **************************************************************************************/ -int up_lcdinitialize(void) +int board_lcd_initialize(void) { lcdvdbg("Initializing\n"); @@ -1155,7 +1156,7 @@ int up_lcdinitialize(void) } /************************************************************************************** - * Name: up_lcdgetdev + * Name: board_lcd_getdev * * Description: * Return a a reference to the LCD object for the specified LCD. This allows support @@ -1163,21 +1164,21 @@ int up_lcdinitialize(void) * **************************************************************************************/ -FAR struct lcd_dev_s *up_lcdgetdev(int lcddev) +FAR struct lcd_dev_s *board_lcd_getdev(int lcddev) { DEBUGASSERT(lcddev == 0); return &g_lcddev.dev; } /************************************************************************************** - * Name: up_lcduninitialize + * Name: board_lcd_uninitialize * * Description: * Unitialize the LCD support * **************************************************************************************/ -void up_lcduninitialize(void) +void board_lcd_uninitialize(void) { stm3220g_poweroff(); stm32_deselectlcd(); -- cgit v1.2.3