summaryrefslogtreecommitdiff
path: root/nuttx/configs/sama5d3x-ek/src
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/sama5d3x-ek/src')
-rw-r--r--nuttx/configs/sama5d3x-ek/src/sam_touchscreen.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/nuttx/configs/sama5d3x-ek/src/sam_touchscreen.c b/nuttx/configs/sama5d3x-ek/src/sam_touchscreen.c
index 51345ab66..3ab2572b2 100644
--- a/nuttx/configs/sama5d3x-ek/src/sam_touchscreen.c
+++ b/nuttx/configs/sama5d3x-ek/src/sam_touchscreen.c
@@ -47,6 +47,8 @@
#include "sam_tsd.h"
#include "sama5d3x-ek.h"
+#include <nuttx/board.h>
+
#ifdef CONFIG_SAMA5_TSD
/****************************************************************************
@@ -83,7 +85,7 @@
****************************************************************************/
/****************************************************************************
- * Name: arch_tcinitialize
+ * Name: board_tsc_setup
*
* Description:
* Each board that supports a touchscreen device must provide this
@@ -100,7 +102,7 @@
*
****************************************************************************/
-int arch_tcinitialize(int minor)
+int board_tsc_setup(int minor)
{
struct sam_adc_s *adc;
static bool initialized = false;
@@ -141,7 +143,7 @@ int arch_tcinitialize(int minor)
}
/****************************************************************************
- * Name: arch_tcuninitialize
+ * Name: board_tsc_teardown
*
* Description:
* Each board that supports a touchscreen device must provide this function.
@@ -156,7 +158,7 @@ int arch_tcinitialize(int minor)
*
****************************************************************************/
-void arch_tcuninitialize(void)
+void board_tsc_teardown(void)
{
/* No support for un-initializing the touchscreen yet */
}