summaryrefslogtreecommitdiff
path: root/src/flash/nor/stellaris.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:35 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:24:40 -0800
commit2958665f6b1239705a7dcc2b275810c394023f0f (patch)
tree6fd9126f123dea7930ecdf9723bc67f41769e403 /src/flash/nor/stellaris.c
parent2641fd9576ae5e3c2856de9a06176b24d05149ac (diff)
downloadopenocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.tar.gz
openocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.tar.bz2
openocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.tar.xz
openocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.zip
change #include "algorithm.h" to <target/algorithm.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "algorithm.h" the following form should be used. #include <target/algorithm.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash/nor/stellaris.c')
-rw-r--r--src/flash/nor/stellaris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c
index 71bd5baf..90b0ac65 100644
--- a/src/flash/nor/stellaris.c
+++ b/src/flash/nor/stellaris.c
@@ -31,7 +31,7 @@
#include "stellaris.h"
#include "armv7m.h"
#include <helper/binarybuffer.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
#define DID0_VER(did0) ((did0 >> 28)&0x07)