diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:25 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:17 -0800 |
commit | d1bc4375e99ce52b72988494f35beca364234bae (patch) | |
tree | e79f10e7829e3cc55235970c877711b4b58d6665 /src/flash | |
parent | 5d57cad00136ac4191483ff5c04d8795c8ea3bde (diff) | |
download | riscv-openocd-d1bc4375e99ce52b72988494f35beca364234bae.zip riscv-openocd-d1bc4375e99ce52b72988494f35beca364234bae.tar.gz riscv-openocd-d1bc4375e99ce52b72988494f35beca364234bae.tar.bz2 |
change #include "binarybuffer.h" to <helper/binarybuffer.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "binarybuffer.h"
the following form should be used.
#include <helper/binarybuffer.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/arm_nandio.h | 2 | ||||
-rw-r--r-- | src/flash/nor/aduc702x.c | 2 | ||||
-rw-r--r-- | src/flash/nor/at91sam7.c | 2 | ||||
-rw-r--r-- | src/flash/nor/cfi.c | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc2000.c | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc288x.c | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc2900.c | 2 | ||||
-rw-r--r-- | src/flash/nor/stellaris.c | 2 | ||||
-rw-r--r-- | src/flash/nor/stm32x.c | 2 | ||||
-rw-r--r-- | src/flash/nor/str7x.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/flash/arm_nandio.h b/src/flash/arm_nandio.h index 115a13a..6788e36 100644 --- a/src/flash/arm_nandio.h +++ b/src/flash/arm_nandio.h @@ -2,7 +2,7 @@ #define __ARM_NANDIO_H #include "nand.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> /** * The arm_nand_data struct is used for defining NAND I/O operations on an ARM diff --git a/src/flash/nor/aduc702x.c b/src/flash/nor/aduc702x.c index 643705c..109b486 100644 --- a/src/flash/nor/aduc702x.c +++ b/src/flash/nor/aduc702x.c @@ -25,7 +25,7 @@ #include "flash.h" #include "armv4_5.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "time_support.h" #include "algorithm.h" diff --git a/src/flash/nor/at91sam7.c b/src/flash/nor/at91sam7.c index f9b87ba..3201737 100644 --- a/src/flash/nor/at91sam7.c +++ b/src/flash/nor/at91sam7.c @@ -50,7 +50,7 @@ #endif #include "at91sam7.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> static int at91sam7_protect_check(struct flash_bank *bank); static int at91sam7_write(struct flash_bank *bank, uint8_t *buffer, uint32_t offset, uint32_t count); diff --git a/src/flash/nor/cfi.c b/src/flash/nor/cfi.c index 6dbffb9..cf83271 100644 --- a/src/flash/nor/cfi.c +++ b/src/flash/nor/cfi.c @@ -26,7 +26,7 @@ #include "cfi.h" #include "non_cfi.h" #include "armv4_5.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "algorithm.h" diff --git a/src/flash/nor/lpc2000.c b/src/flash/nor/lpc2000.c index 418b5b0..981cfac 100644 --- a/src/flash/nor/lpc2000.c +++ b/src/flash/nor/lpc2000.c @@ -27,7 +27,7 @@ #include "lpc2000.h" #include "armv7m.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "algorithm.h" diff --git a/src/flash/nor/lpc288x.c b/src/flash/nor/lpc288x.c index 446fc9d..252a813 100644 --- a/src/flash/nor/lpc288x.c +++ b/src/flash/nor/lpc288x.c @@ -32,7 +32,7 @@ #endif #include "lpc288x.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #define LOAD_TIMER_ERASE 0 diff --git a/src/flash/nor/lpc2900.c b/src/flash/nor/lpc2900.c index 81e2def..bb467c5 100644 --- a/src/flash/nor/lpc2900.c +++ b/src/flash/nor/lpc2900.c @@ -25,7 +25,7 @@ #include "image.h" #include "flash.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "armv4_5.h" #include "algorithm.h" diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c index 771f0a7..71bd5ba 100644 --- a/src/flash/nor/stellaris.c +++ b/src/flash/nor/stellaris.c @@ -30,7 +30,7 @@ #include "stellaris.h" #include "armv7m.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "algorithm.h" diff --git a/src/flash/nor/stm32x.c b/src/flash/nor/stm32x.c index 2f51aa5..9868428 100644 --- a/src/flash/nor/stm32x.c +++ b/src/flash/nor/stm32x.c @@ -26,7 +26,7 @@ #include "stm32x.h" #include "armv7m.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "algorithm.h" diff --git a/src/flash/nor/str7x.c b/src/flash/nor/str7x.c index 7edffac..17a58c9 100644 --- a/src/flash/nor/str7x.c +++ b/src/flash/nor/str7x.c @@ -26,7 +26,7 @@ #include "str7x.h" #include "armv4_5.h" -#include "binarybuffer.h" +#include <helper/binarybuffer.h> #include "algorithm.h" |