diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:38 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:40 -0800 |
commit | 41e92d8a7a987a5bbdeb7e5b36595c8bcc62e620 (patch) | |
tree | 255396209645951de445dcb582ed4224eddf01c3 /src/flash/nor | |
parent | 447f0896dd4652b240e316275913a6e13b11d03e (diff) | |
download | openocd_libswd-41e92d8a7a987a5bbdeb7e5b36595c8bcc62e620.tar.gz openocd_libswd-41e92d8a7a987a5bbdeb7e5b36595c8bcc62e620.tar.bz2 openocd_libswd-41e92d8a7a987a5bbdeb7e5b36595c8bcc62e620.tar.xz openocd_libswd-41e92d8a7a987a5bbdeb7e5b36595c8bcc62e620.zip |
change #include "arm966e.h" to <target/arm966e.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "arm966e.h"
the following form should be used.
#include <target/arm966e.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash/nor')
-rw-r--r-- | src/flash/nor/str9x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c index 7b345809..045ab20b 100644 --- a/src/flash/nor/str9x.c +++ b/src/flash/nor/str9x.c @@ -28,7 +28,7 @@ #endif #include "str9x.h" -#include "arm966e.h" +#include <target/arm966e.h> #include <target/algorithm.h> |