diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-09-26 20:18:18 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-09-26 20:18:18 +0200 |
commit | 1003c37e0b468f04c6b328e000de2a5c109bad82 (patch) | |
tree | 6d70edd0aa2b958ef835a2a4955f5fed6bb7ace8 /drivers/gdisp/TestStub/gdisp_lld.c | |
parent | 1d6a1b5338f3a1b5e95161793013f81b852d1a29 (diff) | |
download | uGFX-1003c37e0b468f04c6b328e000de2a5c109bad82.tar.gz uGFX-1003c37e0b468f04c6b328e000de2a5c109bad82.tar.bz2 uGFX-1003c37e0b468f04c6b328e000de2a5c109bad82.zip |
cleanups
Diffstat (limited to 'drivers/gdisp/TestStub/gdisp_lld.c')
-rw-r--r-- | drivers/gdisp/TestStub/gdisp_lld.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/drivers/gdisp/TestStub/gdisp_lld.c b/drivers/gdisp/TestStub/gdisp_lld.c index e5b88416..8e658fae 100644 --- a/drivers/gdisp/TestStub/gdisp_lld.c +++ b/drivers/gdisp/TestStub/gdisp_lld.c @@ -72,7 +72,10 @@ bool_t GDISP_LLD(init)(void) { *
* @notapi
*/
-void GDISP_LLD(drawpixel)(coord_t UNUSED(x), coord_t UNUSED(y), color_t UNUSED(color)) {
+void GDISP_LLD(drawpixel)(coord_t x, coord_t y, color_t color) {
+ (void)x;
+ (void)y;
+ (void)color;
}
/* ---- Optional Routines ---- */
@@ -87,7 +90,10 @@ void GDISP_LLD(drawpixel)(coord_t UNUSED(x), coord_t UNUSED(y), color_t UNUSED(c *
* @notapi
*/
- color_t GDISP_LLD(getpixelcolor)(coord_t UNUSED(x), coord_t UNUSED(y)) {
+ color_t GDISP_LLD(getpixelcolor)(coord_t x, coord_t y) {
+ (void)x;
+ (void)y;
+
return 0;
}
#endif
@@ -106,7 +112,13 @@ void GDISP_LLD(drawpixel)(coord_t UNUSED(x), coord_t UNUSED(y), color_t UNUSED(c *
* @notapi
*/
- void GDISP_LLD(verticalscroll)(coord_t UNUSED(x), coord_t UNUSED(y), coord_t UNUSED(cx), coord_t UNUSED(cy), int UNUSED(lines), color_t UNUSED(bgcolor)) {
+ void GDISP_LLD(verticalscroll)(coord_t x, coord_t y, coord_t cx, coord_t cy, int lines, color_t bgcolor) {
+ (void)x;
+ (void)y;
+ (void)cx;
+ (void)cy;
+ (void)lines;
+ (void)bgcolor;
}
#endif
|