diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:42 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:41 -0800 |
commit | ddea03304310e1342ee127fc7e6507bbfb237ae4 (patch) | |
tree | 5887aac2edfb178addb8eacccaa01938194cd7b7 /src/target/arm11.h | |
parent | 15accefbe284cfa0c4735ecb5ae3d2127ac8cfff (diff) | |
download | riscv-openocd-ddea03304310e1342ee127fc7e6507bbfb237ae4.zip riscv-openocd-ddea03304310e1342ee127fc7e6507bbfb237ae4.tar.gz riscv-openocd-ddea03304310e1342ee127fc7e6507bbfb237ae4.tar.bz2 |
change #include "armv4_5.h" to <target/armv4_5.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "armv4_5.h"
the following form should be used.
#include <target/armv4_5.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target/arm11.h')
-rw-r--r-- | src/target/arm11.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm11.h b/src/target/arm11.h index fd14720..b118e1c 100644 --- a/src/target/arm11.h +++ b/src/target/arm11.h @@ -23,7 +23,7 @@ #ifndef ARM11_H #define ARM11_H -#include "armv4_5.h" +#include <target/armv4_5.h> #include <target/arm_dpm.h> #define ARM11_TAP_DEFAULT TAP_INVALID |