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.
This commit is contained in:
Zachary T Welch 2009-12-03 04:14:35 -08:00
parent 2641fd9576
commit 2958665f6b
10 changed files with 10 additions and 10 deletions

View File

@ -26,7 +26,7 @@
#include "arm_nandio.h" #include "arm_nandio.h"
#include "armv4_5.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 * Copies code to a working area. This will allocate room for the code plus the

View File

@ -27,7 +27,7 @@
#include "armv4_5.h" #include "armv4_5.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include <helper/time_support.h> #include <helper/time_support.h>
#include "algorithm.h" #include <target/algorithm.h>
static int aduc702x_build_sector_list(struct flash_bank *bank); static int aduc702x_build_sector_list(struct flash_bank *bank);

View File

@ -27,7 +27,7 @@
#include "non_cfi.h" #include "non_cfi.h"
#include "armv4_5.h" #include "armv4_5.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include "algorithm.h" #include <target/algorithm.h>
#define CFI_MAX_BUS_WIDTH 4 #define CFI_MAX_BUS_WIDTH 4

View File

@ -24,7 +24,7 @@
#include "flash.h" #include "flash.h"
#include "embeddedice.h" #include "embeddedice.h"
#include "image.h" #include "image.h"
#include "algorithm.h" #include <target/algorithm.h>
#if 0 #if 0

View File

@ -28,7 +28,7 @@
#include "lpc2000.h" #include "lpc2000.h"
#include "armv7m.h" #include "armv7m.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include "algorithm.h" #include <target/algorithm.h>
/* flash programming support for NXP LPC17xx and LPC2xxx devices /* flash programming support for NXP LPC17xx and LPC2xxx devices

View File

@ -27,7 +27,7 @@
#include "flash.h" #include "flash.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include "armv4_5.h" #include "armv4_5.h"
#include "algorithm.h" #include <target/algorithm.h>
/* 1024 bytes */ /* 1024 bytes */

View File

@ -31,7 +31,7 @@
#include "stellaris.h" #include "stellaris.h"
#include "armv7m.h" #include "armv7m.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include "algorithm.h" #include <target/algorithm.h>
#define DID0_VER(did0) ((did0 >> 28)&0x07) #define DID0_VER(did0) ((did0 >> 28)&0x07)

View File

@ -27,7 +27,7 @@
#include "stm32x.h" #include "stm32x.h"
#include "armv7m.h" #include "armv7m.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include "algorithm.h" #include <target/algorithm.h>
static int stm32x_mass_erase(struct flash_bank *bank); static int stm32x_mass_erase(struct flash_bank *bank);

View File

@ -27,7 +27,7 @@
#include "str7x.h" #include "str7x.h"
#include "armv4_5.h" #include "armv4_5.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>
#include "algorithm.h" #include <target/algorithm.h>
struct str7x_mem_layout mem_layout_str7bank0[] = { struct str7x_mem_layout mem_layout_str7bank0[] = {

View File

@ -29,7 +29,7 @@
#include "str9x.h" #include "str9x.h"
#include "arm966e.h" #include "arm966e.h"
#include "algorithm.h" #include <target/algorithm.h>
static uint32_t bank1start = 0x00080000; static uint32_t bank1start = 0x00080000;