summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/sam4e-ek/src/sam_ili9325.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-04 11:49:15 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-04 11:49:15 -0600
commitb262b5a5c69de0d0c304d3f1e1cd72c17ced05b8 (patch)
tree73a53c3adda267ac7344c722f782fab2102c7e00 /nuttx/configs/sam4e-ek/src/sam_ili9325.c
parent6c0df9bdef90762526d5c541b04f6e2b701c8628 (diff)
More renaming: up_lcdinitialize->board_lcd_initialize, up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize
Diffstat (limited to 'nuttx/configs/sam4e-ek/src/sam_ili9325.c')
-rw-r--r--nuttx/configs/sam4e-ek/src/sam_ili9325.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/nuttx/configs/sam4e-ek/src/sam_ili9325.c b/nuttx/configs/sam4e-ek/src/sam_ili9325.c
index eb419c467d..532e208037 100644
--- a/nuttx/configs/sam4e-ek/src/sam_ili9325.c
+++ b/nuttx/configs/sam4e-ek/src/sam_ili9325.c
@@ -125,6 +125,7 @@
#include <debug.h>
#include <nuttx/arch.h>
+#include <nuttx/board.h>
#include <nuttx/lcd/lcd.h>
#include <nuttx/lcd/ili9325.h>
#include <nuttx/video/rgbcolors.h>
@@ -1304,7 +1305,7 @@ static inline int sam_lcd_initialize(void)
************************************************************************************/
/************************************************************************************
- * Name: up_lcdinitialize
+ * Name: board_lcd_initialize
*
* Description:
* Initialize the LCD video hardware. The initial state of the LCD is fully
@@ -1313,7 +1314,7 @@ static inline int sam_lcd_initialize(void)
*
************************************************************************************/
-int up_lcdinitialize(void)
+int board_lcd_initialize(void)
{
FAR struct sam_dev_s *priv = &g_lcddev;
int ret;
@@ -1351,7 +1352,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
@@ -1359,21 +1360,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:
* Uninitialize the LCD support
*
************************************************************************************/
-void up_lcduninitialize(void)
+void board_lcd_uninitialize(void)
{
FAR struct sam_dev_s *priv = &g_lcddev;