summaryrefslogtreecommitdiff
path: root/src/flash/nor/faux.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:54 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:24:42 -0800
commit2b2d5ec1e38efdd10ec64f8e880588350fb4edea (patch)
tree6a4a6defdd4f5aad28e13b4ad421ee967eb1fe02 /src/flash/nor/faux.c
parenteac262e5d2a56e470e3d13becd646a135aa187c5 (diff)
downloadopenocd+libswd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.tar.gz
openocd+libswd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.tar.bz2
openocd+libswd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.tar.xz
openocd+libswd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.zip
change #include "flash.h" to <flash/flash.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "flash.h" the following form should be used. #include <flash/flash.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash/nor/faux.c')
-rw-r--r--src/flash/nor/faux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/faux.c b/src/flash/nor/faux.c
index 124ca3e1..49a0f722 100644
--- a/src/flash/nor/faux.c
+++ b/src/flash/nor/faux.c
@@ -21,7 +21,7 @@
#include "config.h"
#endif
-#include "flash.h"
+#include <flash/flash.h>
#include <target/image.h>
#include "../hello.h"