diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:15:02 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:49 -0800 |
commit | 2a402ae2c7bf5ce515ff5bfdd7d68f875686e289 (patch) | |
tree | 6fee762214b1dc5c5f1f0289c50a6a1e28eb3556 | |
parent | afb6d38bd52e508970cfcc4a0d26610f33f42875 (diff) | |
download | openocd+libswd-2a402ae2c7bf5ce515ff5bfdd7d68f875686e289.tar.gz openocd+libswd-2a402ae2c7bf5ce515ff5bfdd7d68f875686e289.tar.bz2 openocd+libswd-2a402ae2c7bf5ce515ff5bfdd7d68f875686e289.tar.xz openocd+libswd-2a402ae2c7bf5ce515ff5bfdd7d68f875686e289.zip |
change #include "s3c24xx_regs.h" to <flash/nand/s3c24xx_regs.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "s3c24xx_regs.h"
the following form should be used.
#include <flash/nand/s3c24xx_regs.h>
The exception is from .c files in the same directory.
-rw-r--r-- | src/flash/nand/s3c24xx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nand/s3c24xx.h b/src/flash/nand/s3c24xx.h index 0f899dad..f89bf6e9 100644 --- a/src/flash/nand/s3c24xx.h +++ b/src/flash/nand/s3c24xx.h @@ -28,7 +28,7 @@ */ #include <flash/nand.h> -#include "s3c24xx_regs.h" +#include <flash/nand/s3c24xx_regs.h> struct s3c24xx_nand_controller { |