diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:43 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:41 -0800 |
commit | f52a5968604ae0dffc5b93e745724f850a416282 (patch) | |
tree | 7e0605e89492b204749897d518c3d3ba5c1142cc /src/flash | |
parent | a1c40f5120bd45f98974fd73d1cdaa10c674f09c (diff) | |
download | openocd_libswd-f52a5968604ae0dffc5b93e745724f850a416282.tar.gz openocd_libswd-f52a5968604ae0dffc5b93e745724f850a416282.tar.bz2 openocd_libswd-f52a5968604ae0dffc5b93e745724f850a416282.tar.xz openocd_libswd-f52a5968604ae0dffc5b93e745724f850a416282.zip |
change #include "armv7m.h" to <target/armv7m.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "armv7m.h"
the following form should be used.
#include <target/armv7m.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/nor/lpc2000.c | 2 | ||||
-rw-r--r-- | src/flash/nor/stellaris.c | 2 | ||||
-rw-r--r-- | src/flash/nor/stm32x.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/flash/nor/lpc2000.c b/src/flash/nor/lpc2000.c index 9479a9fe..295e3e7f 100644 --- a/src/flash/nor/lpc2000.c +++ b/src/flash/nor/lpc2000.c @@ -26,7 +26,7 @@ #endif #include "lpc2000.h" -#include "armv7m.h" +#include <target/armv7m.h> #include <helper/binarybuffer.h> #include <target/algorithm.h> diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c index 90b0ac65..f0028ea6 100644 --- a/src/flash/nor/stellaris.c +++ b/src/flash/nor/stellaris.c @@ -29,7 +29,7 @@ #endif #include "stellaris.h" -#include "armv7m.h" +#include <target/armv7m.h> #include <helper/binarybuffer.h> #include <target/algorithm.h> diff --git a/src/flash/nor/stm32x.c b/src/flash/nor/stm32x.c index 581b6505..37925470 100644 --- a/src/flash/nor/stm32x.c +++ b/src/flash/nor/stm32x.c @@ -25,7 +25,7 @@ #endif #include "stm32x.h" -#include "armv7m.h" +#include <target/armv7m.h> #include <helper/binarybuffer.h> #include <target/algorithm.h> |