diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:39 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:40 -0800 |
commit | 0c1bc6703cc76b61d352477af9a796dcab28adcd (patch) | |
tree | 509fafee2640b60d69a77b5c08773f8d443486c0 /src | |
parent | 2c35b35e111b5a23a3316e02e419c212840c4cc2 (diff) | |
download | openocd+libswd-0c1bc6703cc76b61d352477af9a796dcab28adcd.tar.gz openocd+libswd-0c1bc6703cc76b61d352477af9a796dcab28adcd.tar.bz2 openocd+libswd-0c1bc6703cc76b61d352477af9a796dcab28adcd.tar.xz openocd+libswd-0c1bc6703cc76b61d352477af9a796dcab28adcd.zip |
change #include "arm_adi_v5.h" to <target/arm_adi_v5.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "arm_adi_v5.h"
the following form should be used.
#include <target/arm_adi_v5.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src')
-rw-r--r-- | src/target/armv7a.h | 2 | ||||
-rw-r--r-- | src/target/armv7m.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h index 6ccf3e29..2bd261aa 100644 --- a/src/target/armv7a.h +++ b/src/target/armv7a.h @@ -19,7 +19,7 @@ #ifndef ARMV7A_H #define ARMV7A_H -#include "arm_adi_v5.h" +#include <target/arm_adi_v5.h> #include "armv4_5.h" #include "armv4_5_mmu.h" #include "armv4_5_cache.h" diff --git a/src/target/armv7m.h b/src/target/armv7m.h index 7299bdf9..46871e1e 100644 --- a/src/target/armv7m.h +++ b/src/target/armv7m.h @@ -26,7 +26,7 @@ #ifndef ARMV7M_COMMON_H #define ARMV7M_COMMON_H -#include "arm_adi_v5.h" +#include <target/arm_adi_v5.h> #include "armv4_5.h" /* define for enabling armv7 gdb workarounds */ |