aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-09-26 13:52:36 +0200
committerJoel Bodenmann <joel@unormal.org>2012-09-26 13:52:36 +0200
commit1d6a1b5338f3a1b5e95161793013f81b852d1a29 (patch)
tree09656eb5e7638ec17373af663125b1739b8bc334
parent50022e7984b51f8092cf058b84f14ed7fb3b4684 (diff)
downloaduGFX-1d6a1b5338f3a1b5e95161793013f81b852d1a29.tar.gz
uGFX-1d6a1b5338f3a1b5e95161793013f81b852d1a29.tar.bz2
uGFX-1d6a1b5338f3a1b5e95161793013f81b852d1a29.zip
compiler warning fix
-rw-r--r--drivers/gdisp/SSD1289/ssd1289_lld.c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gdisp/SSD1289/ssd1289_lld.c.h b/drivers/gdisp/SSD1289/ssd1289_lld.c.h
index 79134239..5fe33612 100644
--- a/drivers/gdisp/SSD1289/ssd1289_lld.c.h
+++ b/drivers/gdisp/SSD1289/ssd1289_lld.c.h
@@ -21,7 +21,7 @@
#ifndef SSD1289_H
#define SSD1289_H
-#if defined(LCD_USE_GPIO)
+#if LCD_USE_GPIO
#define Set_CS palSetPad(LCD_CMD_PORT, LCD_CS);
#define Clr_CS palClearPad(LCD_CMD_PORT, LCD_CS);
#define Set_RS palSetPad(LCD_CMD_PORT, LCD_RS);