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/ocl.c | |
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/ocl.c')
-rw-r--r-- | src/flash/nor/ocl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/ocl.c b/src/flash/nor/ocl.c index 57d9efa..6e3ad1c 100644 --- a/src/flash/nor/ocl.c +++ b/src/flash/nor/ocl.c @@ -22,7 +22,7 @@ #endif #include "ocl.h" -#include "flash.h" +#include <flash/flash.h> #include <target/embeddedice.h> |