aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-02-11 10:26:34 +0100
committerJoel Bodenmann <joel@unormal.org>2013-02-11 10:26:34 +0100
commit60b16e86858a12d513292c36f6aa265d8f19033a (patch)
treeb4aff0f047c1a20b417aa3c8f3bfa074f94d9428 /include
parent1bfc5a9f85e7c3296095105ca8e3ee1215b22be8 (diff)
downloaduGFX-60b16e86858a12d513292c36f6aa265d8f19033a.tar.gz
uGFX-60b16e86858a12d513292c36f6aa265d8f19033a.tar.bz2
uGFX-60b16e86858a12d513292c36f6aa265d8f19033a.zip
more GDISP_LLD() cleanup
Diffstat (limited to 'include')
-rw-r--r--include/gdisp/lld/emulation.c2
-rw-r--r--include/gdisp/lld/gdisp_lld.h7
2 files changed, 2 insertions, 7 deletions
diff --git a/include/gdisp/lld/emulation.c b/include/gdisp/lld/emulation.c
index bd9394af..86301ed5 100644
--- a/include/gdisp/lld/emulation.c
+++ b/include/gdisp/lld/emulation.c
@@ -685,7 +685,7 @@ void *lld_gdisp_query(unsigned what) {
#endif
#if GDISP_NEED_MSGAPI
- void GDISP_LLD(msgdispatch)(gdisp_lld_msg_t *msg) {
+ void lld_gdisp_msg_dispatch(gdisp_lld_msg_t *msg) {
switch(msg->action) {
case GDISP_LLD_MSG_NOP:
break;
diff --git a/include/gdisp/lld/gdisp_lld.h b/include/gdisp/lld/gdisp_lld.h
index d648f6e3..7c8ac40e 100644
--- a/include/gdisp/lld/gdisp_lld.h
+++ b/include/gdisp/lld/gdisp_lld.h
@@ -458,11 +458,6 @@ typedef enum powermode {powerOff, powerSleep, powerDeepSleep, powerOn} gdisp_pow
/* External declarations. */
/*===========================================================================*/
-#ifndef GDISP_LLD_VMT
- /* Special magic stuff for the VMT driver */
- #define GDISP_LLD_VMT(x) GDISP_LLD(x)
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif
@@ -530,7 +525,7 @@ extern "C" {
/* Messaging API */
#if GDISP_NEED_MSGAPI
#include "gdisp_lld_msgs.h"
- extern void GDISP_LLD(msgdispatch)(gdisp_lld_msg_t *msg);
+ extern void lld_gdisp_msg_dispatch(gdisp_lld_msg_t *msg);
#endif
#ifdef __cplusplus