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 | a1c40f5120bd45f98974fd73d1cdaa10c674f09c (patch) | |
tree | 4b1ece6568dc4abe632b2a3ebc42549ce1290ee1 /src/target | |
parent | 377c5504b9cd040aa986d0927ab8aa49032b8584 (diff) | |
download | openocd_libswd-a1c40f5120bd45f98974fd73d1cdaa10c674f09c.tar.gz openocd_libswd-a1c40f5120bd45f98974fd73d1cdaa10c674f09c.tar.bz2 openocd_libswd-a1c40f5120bd45f98974fd73d1cdaa10c674f09c.tar.xz openocd_libswd-a1c40f5120bd45f98974fd73d1cdaa10c674f09c.zip |
change #include "armv7a.h" to <target/armv7a.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "armv7a.h"
the following form should be used.
#include <target/armv7a.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/cortex_a8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/cortex_a8.h b/src/target/cortex_a8.h index 87db23ec..adffe935 100644 --- a/src/target/cortex_a8.h +++ b/src/target/cortex_a8.h @@ -29,7 +29,7 @@ #ifndef CORTEX_A8_H #define CORTEX_A8_H -#include "armv7a.h" +#include <target/armv7a.h> extern char* cortex_a8_state_strings[]; |