summaryrefslogtreecommitdiff
path: root/nuttx/configs/lm3s8962-ek
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-22 09:01:51 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-22 09:01:51 -0600
commit54f7552fbc21a3959636225bd8e80ba95fc6750c (patch)
tree9cc321d2ef1c24efd225f33840e2349bb6e4abd2 /nuttx/configs/lm3s8962-ek
parent34cc8f19dfc278d546a9dd8c00eebabe0bc3094d (diff)
downloadnuttx-54f7552fbc21a3959636225bd8e80ba95fc6750c.tar.gz
nuttx-54f7552fbc21a3959636225bd8e80ba95fc6750c.tar.bz2
nuttx-54f7552fbc21a3959636225bd8e80ba95fc6750c.zip
Change all variadic macros to C99 style
Diffstat (limited to 'nuttx/configs/lm3s8962-ek')
-rw-r--r--nuttx/configs/lm3s8962-ek/src/up_oled.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/configs/lm3s8962-ek/src/up_oled.c b/nuttx/configs/lm3s8962-ek/src/up_oled.c
index f331a2f0e..baf258d2a 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_oled.c
+++ b/nuttx/configs/lm3s8962-ek/src/up_oled.c
@@ -71,9 +71,9 @@
#endif
#ifdef CONFIG_LCD_RITDEBUG
-# define ritdbg(format, arg...) vdbg(format, ##arg)
-# define oleddc_dumpgpio(m) tiva_dumpgpio(OLEDDC_GPIO, m)
-# define oledcs_dumpgpio(m) tiva_dumpgpio(OLEDCS_GPIO, m)
+# define ritdbg(format, ...) vdbg(format, ##__VA_ARGS__)
+# define oleddc_dumpgpio(m) tiva_dumpgpio(OLEDDC_GPIO, m)
+# define oledcs_dumpgpio(m) tiva_dumpgpio(OLEDCS_GPIO, m)
#else
# define ritdbg(x...)
# define oleddc_dumpgpio(m)