summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-19 14:52:17 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-19 14:52:17 -0600
commitf0c498b52382e6c9625afb2232a16ac0d82f149c (patch)
treeb662482df865133e4d2501dd6bb1c5a1126a7323 /apps
parent9638964ba3fb95c3f29d455f9c4af07d39606ee1 (diff)
downloadnuttx-f0c498b52382e6c9625afb2232a16ac0d82f149c.tar.gz
nuttx-f0c498b52382e6c9625afb2232a16ac0d82f149c.tar.bz2
nuttx-f0c498b52382e6c9625afb2232a16ac0d82f149c.zip
STM32 LTDC: Move ltdc.h from include/nuttx/video to arch/arm/include/stm32; Trivial updates after general review
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/ltdc/ltdc_main.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/examples/ltdc/ltdc_main.c b/apps/examples/ltdc/ltdc_main.c
index 5d93c67f0..629a1da3e 100644
--- a/apps/examples/ltdc/ltdc_main.c
+++ b/apps/examples/ltdc/ltdc_main.c
@@ -37,14 +37,17 @@
* Included Files
****************************************************************************/
+#include <nuttx/config.h>
+
+#include <sys/types.h>
#include <unistd.h>
#include <string.h>
-#include <nuttx/config.h>
+#include <debug.h>
+
#include <nuttx/video/rgbcolors.h>
#include <nuttx/video/fb.h>
-#include <nuttx/video/ltdc.h>
-#include <sys/types.h>
-#include <debug.h>
+
+#include <arch/chip/ltdc.h>
/****************************************************************************
* Pre-processor Definitions