summaryrefslogtreecommitdiff
path: root/nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c')
-rw-r--r--nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c b/nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c
index 210c11d19..f15c688ed 100644
--- a/nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c
+++ b/nuttx/configs/mikroe-stm32f4/src/stm32_touchscreen.c
@@ -50,6 +50,7 @@
#include <errno.h>
#include <debug.h>
+#include <nuttx/board.h>
#include <nuttx/clock.h>
#include <nuttx/wqueue.h>
#include <nuttx/fs/fs.h>
@@ -1473,7 +1474,7 @@ errout:
************************************************************************************/
/****************************************************************************
- * Name: arch_tcinitialize
+ * Name: board_tsc_setup
*
* Description:
* Each board that supports a touchscreen device must provide this function.
@@ -1490,7 +1491,7 @@ errout:
*
****************************************************************************/
-int arch_tcinitialize(int minor)
+int board_tsc_setup(int minor)
{
FAR struct tc_dev_s *priv;
char devname[DEV_NAMELEN];
@@ -1583,7 +1584,7 @@ errout_with_priv:
}
/****************************************************************************
- * Name: arch_tcuninitialize
+ * Name: board_tsc_teardown
*
* Description:
* Each board that supports a touchscreen device must provide this function.
@@ -1598,7 +1599,7 @@ errout_with_priv:
*
****************************************************************************/
-void arch_tcuninitialize(void)
+void board_tsc_teardown(void)
{
/* Need to unregister the /dev/inputN device here. */
}