diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-02-11 10:26:34 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-02-11 10:26:34 +0100 |
commit | 60b16e86858a12d513292c36f6aa265d8f19033a (patch) | |
tree | b4aff0f047c1a20b417aa3c8f3bfa074f94d9428 /src/gdisp | |
parent | 1bfc5a9f85e7c3296095105ca8e3ee1215b22be8 (diff) | |
download | uGFX-60b16e86858a12d513292c36f6aa265d8f19033a.tar.gz uGFX-60b16e86858a12d513292c36f6aa265d8f19033a.tar.bz2 uGFX-60b16e86858a12d513292c36f6aa265d8f19033a.zip |
more GDISP_LLD() cleanup
Diffstat (limited to 'src/gdisp')
-rw-r--r-- | src/gdisp/gdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c index 2d757fcb..c8383ff3 100644 --- a/src/gdisp/gdisp.c +++ b/src/gdisp/gdisp.c @@ -95,7 +95,7 @@ /* OK - we need to obtain the mutex in case a synchronous operation is occurring */
chMtxLock(&gdispMutex);
- GDISP_LLD(msgdispatch)(pmsg);
+ lld_gdisp_msg_dispatch(pmsg);
chMtxUnlock();
/* Mark the message as free */
|