summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:55 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:24:42 -0800
commit9cbab8d3a6b6157629b75457b79e1b828c78bf6e (patch)
tree62b476b7c363b244a3319c1d185525d7eb71951d /src/openocd.c
parent2b2d5ec1e38efdd10ec64f8e880588350fb4edea (diff)
downloadopenocd+libswd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.tar.gz
openocd+libswd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.tar.bz2
openocd+libswd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.tar.xz
openocd+libswd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.zip
change #include "mflash.h" to <flash/mflash.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "mflash.h" the following form should be used. #include <flash/mflash.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 38eb57b0..eae8c0c0 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -36,7 +36,7 @@
#include "svf.h"
#include "nand.h"
#include "pld.h"
-#include "mflash.h"
+#include <flash/mflash.h>
#include "server.h"
#include "gdb_server.h"