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.__archive__
parent
5d57cad001
commit
d1bc4375e9
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "lpc2000.h"
|
||||
#include "armv7m.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "algorithm.h"
|
||||
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#endif
|
||||
|
||||
#include "lpc288x.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
|
||||
|
||||
#define LOAD_TIMER_ERASE 0
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#include "image.h"
|
||||
#include "flash.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "armv4_5.h"
|
||||
#include "algorithm.h"
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "stellaris.h"
|
||||
#include "armv7m.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "algorithm.h"
|
||||
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "stm32x.h"
|
||||
#include "armv7m.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "algorithm.h"
|
||||
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "str7x.h"
|
||||
#include "armv4_5.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "algorithm.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef JTAG_H
|
||||
#define JTAG_H
|
||||
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "log.h"
|
||||
|
||||
#ifdef _DEBUG_JTAG_IO_
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "algorithm.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
|
||||
|
||||
void init_mem_param(struct mem_param *param, uint32_t address, uint32_t size, enum param_direction direction)
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "armv4_5.h"
|
||||
#include "arm_disassembler.h"
|
||||
#include "arm_simulator.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "register.h"
|
||||
#include "log.h"
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "arm_jtag.h"
|
||||
#include "breakpoints.h"
|
||||
#include "arm_disassembler.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "arm_disassembler.h"
|
||||
|
||||
#include "register.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "command.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "target.h"
|
||||
#include "target_request.h"
|
||||
#include "target_type.h"
|
||||
#include "binarybuffer.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "trace.h"
|
||||
#include "log.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue