aboutsummaryrefslogtreecommitdiffstats
path: root/touchpad.c
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-07 23:57:15 +0200
committerTectu <joel@unormal.org>2012-06-07 23:57:15 +0200
commitcb3292bf36bd1f06d08a1a345cfbd9bae67e941e (patch)
treeb7960aa1d7ac3933d9af737ebc5bfaf2802d71aa /touchpad.c
parentef2d9a6a3019bb8677b8d6d8119daf8eebeabbb1 (diff)
downloaduGFX-cb3292bf36bd1f06d08a1a345cfbd9bae67e941e.tar.gz
uGFX-cb3292bf36bd1f06d08a1a345cfbd9bae67e941e.tar.bz2
uGFX-cb3292bf36bd1f06d08a1a345cfbd9bae67e941e.zip
cleanups
Diffstat (limited to 'touchpad.c')
-rw-r--r--touchpad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/touchpad.c b/touchpad.c
index 0a15818d..51b6e227 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -52,7 +52,7 @@ uint8_t tpIRQ(void) {
return (!palReadPad(TP_PORT, TP_IRQ));
}
-uint16_t tpReadRealX(void) {
+static uint16_t tpReadRealX(void) {
uint32_t results = 0;
uint16_t i, x;
@@ -66,7 +66,7 @@ uint16_t tpReadRealX(void) {
return x;
}
-uint16_t tpReadRealY(void) {
+static uint16_t tpReadRealY(void) {
uint32_t results = 0;
uint16_t i, y;