diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:37 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:40 -0800 |
commit | 9e3136a5f84a402ae9f5c9e24a1e6c2a7451aac3 (patch) | |
tree | f06ab356a17ad1ba4e232465e023f6e09b9eb4f7 /src/flash | |
parent | 28b17945059a4dcca4dba0ef30d07f0c3f328366 (diff) | |
download | riscv-openocd-9e3136a5f84a402ae9f5c9e24a1e6c2a7451aac3.zip riscv-openocd-9e3136a5f84a402ae9f5c9e24a1e6c2a7451aac3.tar.gz riscv-openocd-9e3136a5f84a402ae9f5c9e24a1e6c2a7451aac3.tar.bz2 |
change #include "arm7_9_common.h" to <target/arm7_9_common.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "arm7_9_common.h"
the following form should be used.
#include <target/arm7_9_common.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/nor/str9xpec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/str9xpec.c b/src/flash/nor/str9xpec.c index 96e1259..87a4b06 100644 --- a/src/flash/nor/str9xpec.c +++ b/src/flash/nor/str9xpec.c @@ -25,7 +25,7 @@ #endif #include "str9xpec.h" -#include "arm7_9_common.h" +#include <target/arm7_9_common.h> static int str9xpec_erase_area(struct flash_bank *bank, int first, int last); |