diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:58 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:49 -0800 |
commit | afb6d38bd52e508970cfcc4a0d26610f33f42875 (patch) | |
tree | 3fb9f89ef51983c646edcaec2858860b1fc3404f /src/flash | |
parent | 450ceda9aec12a0b67cca8dfbaf0384824cbd6c2 (diff) | |
download | openocd_libswd-afb6d38bd52e508970cfcc4a0d26610f33f42875.tar.gz openocd_libswd-afb6d38bd52e508970cfcc4a0d26610f33f42875.tar.bz2 openocd_libswd-afb6d38bd52e508970cfcc4a0d26610f33f42875.tar.xz openocd_libswd-afb6d38bd52e508970cfcc4a0d26610f33f42875.zip |
change #include "ocl.h" to <flash/nor/ocl.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "ocl.h"
the following form should be used.
#include <flash/nor/ocl.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/ocl/at91sam7x/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/ocl/at91sam7x/main.c b/src/flash/ocl/at91sam7x/main.c index 2146d74e..e4c0c3fa 100644 --- a/src/flash/ocl/at91sam7x/main.c +++ b/src/flash/ocl/at91sam7x/main.c @@ -19,7 +19,7 @@ ***************************************************************************/ #include "platform.h" -#include "ocl.h" +#include <flash/nor/ocl.h> #include "dcc.h" #include "samflash.h" |