diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:55 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:42 -0800 |
commit | 9cbab8d3a6b6157629b75457b79e1b828c78bf6e (patch) | |
tree | 62b476b7c363b244a3319c1d185525d7eb71951d /src | |
parent | 2b2d5ec1e38efdd10ec64f8e880588350fb4edea (diff) | |
download | riscv-openocd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.zip riscv-openocd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.tar.gz riscv-openocd-9cbab8d3a6b6157629b75457b79e1b828c78bf6e.tar.bz2 |
change #include "mflash.h" to <flash/mflash.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "mflash.h"
the following form should be used.
#include <flash/mflash.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src')
-rw-r--r-- | src/openocd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c index 38eb57b..eae8c0c 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -36,7 +36,7 @@ #include "svf.h" #include "nand.h" #include "pld.h" -#include "mflash.h" +#include <flash/mflash.h> #include "server.h" #include "gdb_server.h" |