summaryrefslogtreecommitdiff
path: root/src/flash
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:35 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:24:40 -0800
commit2958665f6b1239705a7dcc2b275810c394023f0f (patch)
tree6fd9126f123dea7930ecdf9723bc67f41769e403 /src/flash
parent2641fd9576ae5e3c2856de9a06176b24d05149ac (diff)
downloadopenocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.tar.gz
openocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.tar.bz2
openocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.tar.xz
openocd+libswd-2958665f6b1239705a7dcc2b275810c394023f0f.zip
change #include "algorithm.h" to <target/algorithm.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "algorithm.h" the following form should be used. #include <target/algorithm.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash')
-rw-r--r--src/flash/arm_nandio.c2
-rw-r--r--src/flash/nor/aduc702x.c2
-rw-r--r--src/flash/nor/cfi.c2
-rw-r--r--src/flash/nor/ecos.c2
-rw-r--r--src/flash/nor/lpc2000.c2
-rw-r--r--src/flash/nor/lpc2900.c2
-rw-r--r--src/flash/nor/stellaris.c2
-rw-r--r--src/flash/nor/stm32x.c2
-rw-r--r--src/flash/nor/str7x.c2
-rw-r--r--src/flash/nor/str9x.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/src/flash/arm_nandio.c b/src/flash/arm_nandio.c
index f774b619..4647c794 100644
--- a/src/flash/arm_nandio.c
+++ b/src/flash/arm_nandio.c
@@ -26,7 +26,7 @@
#include "arm_nandio.h"
#include "armv4_5.h"
-#include "algorithm.h"
+#include <target/algorithm.h>
/**
* Copies code to a working area. This will allocate room for the code plus the
diff --git a/src/flash/nor/aduc702x.c b/src/flash/nor/aduc702x.c
index f7aa7468..402da1f4 100644
--- a/src/flash/nor/aduc702x.c
+++ b/src/flash/nor/aduc702x.c
@@ -27,7 +27,7 @@
#include "armv4_5.h"
#include <helper/binarybuffer.h>
#include <helper/time_support.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
static int aduc702x_build_sector_list(struct flash_bank *bank);
diff --git a/src/flash/nor/cfi.c b/src/flash/nor/cfi.c
index cf83271d..043d7420 100644
--- a/src/flash/nor/cfi.c
+++ b/src/flash/nor/cfi.c
@@ -27,7 +27,7 @@
#include "non_cfi.h"
#include "armv4_5.h"
#include <helper/binarybuffer.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
#define CFI_MAX_BUS_WIDTH 4
diff --git a/src/flash/nor/ecos.c b/src/flash/nor/ecos.c
index 7a0b26f3..f689e152 100644
--- a/src/flash/nor/ecos.c
+++ b/src/flash/nor/ecos.c
@@ -24,7 +24,7 @@
#include "flash.h"
#include "embeddedice.h"
#include "image.h"
-#include "algorithm.h"
+#include <target/algorithm.h>
#if 0
diff --git a/src/flash/nor/lpc2000.c b/src/flash/nor/lpc2000.c
index 981cfac1..9479a9fe 100644
--- a/src/flash/nor/lpc2000.c
+++ b/src/flash/nor/lpc2000.c
@@ -28,7 +28,7 @@
#include "lpc2000.h"
#include "armv7m.h"
#include <helper/binarybuffer.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
/* flash programming support for NXP LPC17xx and LPC2xxx devices
diff --git a/src/flash/nor/lpc2900.c b/src/flash/nor/lpc2900.c
index bb467c54..9cbb9e4b 100644
--- a/src/flash/nor/lpc2900.c
+++ b/src/flash/nor/lpc2900.c
@@ -27,7 +27,7 @@
#include "flash.h"
#include <helper/binarybuffer.h>
#include "armv4_5.h"
-#include "algorithm.h"
+#include <target/algorithm.h>
/* 1024 bytes */
diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c
index 71bd5baf..90b0ac65 100644
--- a/src/flash/nor/stellaris.c
+++ b/src/flash/nor/stellaris.c
@@ -31,7 +31,7 @@
#include "stellaris.h"
#include "armv7m.h"
#include <helper/binarybuffer.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
#define DID0_VER(did0) ((did0 >> 28)&0x07)
diff --git a/src/flash/nor/stm32x.c b/src/flash/nor/stm32x.c
index 98684285..581b6505 100644
--- a/src/flash/nor/stm32x.c
+++ b/src/flash/nor/stm32x.c
@@ -27,7 +27,7 @@
#include "stm32x.h"
#include "armv7m.h"
#include <helper/binarybuffer.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
static int stm32x_mass_erase(struct flash_bank *bank);
diff --git a/src/flash/nor/str7x.c b/src/flash/nor/str7x.c
index 17a58c99..4da3f07e 100644
--- a/src/flash/nor/str7x.c
+++ b/src/flash/nor/str7x.c
@@ -27,7 +27,7 @@
#include "str7x.h"
#include "armv4_5.h"
#include <helper/binarybuffer.h>
-#include "algorithm.h"
+#include <target/algorithm.h>
struct str7x_mem_layout mem_layout_str7bank0[] = {
diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c
index 98f15e75..7b345809 100644
--- a/src/flash/nor/str9x.c
+++ b/src/flash/nor/str9x.c
@@ -29,7 +29,7 @@
#include "str9x.h"
#include "arm966e.h"
-#include "algorithm.h"
+#include <target/algorithm.h>
static uint32_t bank1start = 0x00080000;