diff options
author | Tectu <joel@unormal.org> | 2012-07-23 03:43:11 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-07-23 03:43:11 +0200 |
commit | a9d5837f4039ecc1868c4fefae66e52c61f02142 (patch) | |
tree | 4a6bc9b62eb10a82bc871ba891ee6d6d03c3826a /drivers/lcd/ssd1289_lld.c | |
parent | 586468a7c9268b585f35128c96908e6e21a399d6 (diff) | |
download | uGFX-a9d5837f4039ecc1868c4fefae66e52c61f02142.tar.gz uGFX-a9d5837f4039ecc1868c4fefae66e52c61f02142.tar.bz2 uGFX-a9d5837f4039ecc1868c4fefae66e52c61f02142.zip |
cleanup
Diffstat (limited to 'drivers/lcd/ssd1289_lld.c')
-rw-r--r-- | drivers/lcd/ssd1289_lld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/lcd/ssd1289_lld.c b/drivers/lcd/ssd1289_lld.c index 3a482b93..09769a4b 100644 --- a/drivers/lcd/ssd1289_lld.c +++ b/drivers/lcd/ssd1289_lld.c @@ -105,11 +105,11 @@ __inline void lld_lcdReadStream(uint16_t *buffer, size_t size) { buffer[i] = lld_lcdReadData(); } -#endif +#endif // LCD_USE_GPIO #ifdef LCD_USE_SPI /* TODO */ -#endif +#endif // LCD_USE_SPI #ifdef LCD_USE_FSMC @@ -170,7 +170,7 @@ __inline void lld_lcdReadStream(uint16_t *buffer, size_t size) { buffer[i] = LCD_RAM; } } -#endif +#endif // LCD_USE_FSMC static __inline void lld_lcdDelay(uint16_t us) { chThdSleepMicroseconds(us); |