change #include "time_support.h" to <helper/time_support.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "time_support.h" the following form should be used. #include <helper/time_support.h> The exception is from .c files in the same directory.__archive__
parent
ba00ba47d2
commit
6512e5e36b
|
@ -30,7 +30,7 @@
|
|||
#include "flash.h"
|
||||
#include "common.h"
|
||||
#include "image.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
static int flash_write_unlock(struct target *target, struct image *image, uint32_t *written, int erase, bool unlock);
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "mflash.h"
|
||||
#include "target.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include <helper/fileio.h>
|
||||
#include <helper/log.h>
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "nand.h"
|
||||
#include "common.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include <helper/fileio.h>
|
||||
|
||||
static int nand_read_page(struct nand_device *nand, uint32_t page, uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "flash.h"
|
||||
#include "armv4_5.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "algorithm.h"
|
||||
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
#include "flash.h"
|
||||
#include <helper/membuf.h>
|
||||
#include "at91sam3.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
#define REG_NAME_WIDTH (12)
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
/* project specific includes */
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
#if IS_CYGWIN == 1
|
||||
#include <windows.h>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "bitq.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "pld.h"
|
||||
#include <helper/log.h>
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
|
||||
/* pld drivers
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
#include "jtag.h"
|
||||
#include "svf.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
|
||||
// SVF command
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "breakpoints.h"
|
||||
#include "arm11_dbgtap.h"
|
||||
#include "arm_simulator.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "target_type.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "arm_jtag.h"
|
||||
#include "arm11_dbgtap.h"
|
||||
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
#if 0
|
||||
#define JTAG_DEBUG(expr ...) do { if (1) LOG_DEBUG(expr); } while (0)
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#endif
|
||||
|
||||
#include "arm720t.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "embeddedice.h"
|
||||
#include "target_request.h"
|
||||
#include "etm.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "arm_simulator.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "arm920t.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#endif
|
||||
|
||||
#include "arm926ejs.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#endif
|
||||
|
||||
#include "arm_adi_v5.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
|
||||
/*
|
||||
* Transaction Mode:
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include "target_type.h"
|
||||
#include "target_request.h"
|
||||
#include "breakpoints.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "register.h"
|
||||
#include "trace.h"
|
||||
#include "image.h"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "arm_jtag.h"
|
||||
#include "arm_simulator.h"
|
||||
#include "arm_disassembler.h"
|
||||
#include "time_support.h"
|
||||
#include <helper/time_support.h>
|
||||
#include "register.h"
|
||||
#include "image.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue