diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:54 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:42 -0800 |
commit | 2b2d5ec1e38efdd10ec64f8e880588350fb4edea (patch) | |
tree | 6a4a6defdd4f5aad28e13b4ad421ee967eb1fe02 /src/flash/nor/str9xpec.h | |
parent | eac262e5d2a56e470e3d13becd646a135aa187c5 (diff) | |
download | riscv-openocd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.zip riscv-openocd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.tar.gz riscv-openocd-2b2d5ec1e38efdd10ec64f8e880588350fb4edea.tar.bz2 |
change #include "flash.h" to <flash/flash.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "flash.h"
the following form should be used.
#include <flash/flash.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash/nor/str9xpec.h')
-rw-r--r-- | src/flash/nor/str9xpec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/str9xpec.h b/src/flash/nor/str9xpec.h index 1d5ce94..cb2ac78 100644 --- a/src/flash/nor/str9xpec.h +++ b/src/flash/nor/str9xpec.h @@ -23,7 +23,7 @@ #ifndef STR9XPEC_H #define STR9XPEC_H -#include "flash.h" +#include <flash/flash.h> #include <jtag/jtag.h> struct str9xpec_flash_controller |