#include "target.h" less wildly
Don't include "target.h" from more headers than necessary. This avoids needless interdependencies and duplicated include paths. Don't needlessly include it in source files, either. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
parent
8193f17c3a
commit
b695cb7522
|
@ -26,7 +26,6 @@
|
|||
#include "configuration.h"
|
||||
#include "xsvf.h"
|
||||
#include "svf.h"
|
||||
#include "target.h"
|
||||
#include "nand.h"
|
||||
#include "pld.h"
|
||||
|
||||
|
|
|
@ -62,7 +62,6 @@
|
|||
#include <stddef.h>
|
||||
#include "types.h"
|
||||
#include "flash.h"
|
||||
#include "target.h"
|
||||
#include "membuf.h"
|
||||
#include "at91sam3.h"
|
||||
#include "time_support.h"
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
#ifndef LPC3180_NAND_CONTROLLER_H
|
||||
#define LPC3180_NAND_CONTROLLER_H
|
||||
|
||||
#include "target.h"
|
||||
|
||||
enum lpc3180_selected_controller
|
||||
{
|
||||
LPC3180_NO_CONTROLLER,
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "mflash.h"
|
||||
#include "target.h"
|
||||
#include "time_support.h"
|
||||
#include "fileio.h"
|
||||
#include "log.h"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef _MFLASH_H
|
||||
#define _MFLASH_H
|
||||
|
||||
#include "target.h"
|
||||
struct command_context;
|
||||
|
||||
typedef unsigned long mg_io_uint32;
|
||||
typedef unsigned short mg_io_uint16;
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
#include "configuration.h"
|
||||
#include "xsvf.h"
|
||||
#include "svf.h"
|
||||
#include "target.h"
|
||||
#include "nand.h"
|
||||
#include "pld.h"
|
||||
#include "mflash.h"
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gdb_server.h"
|
||||
#include "breakpoints.h"
|
||||
#include "target_request.h"
|
||||
#include "register.h"
|
||||
#include "server.h"
|
||||
#include "flash.h"
|
||||
#include "gdb_server.h"
|
||||
#include "image.h"
|
||||
#include "jtag.h"
|
||||
|
||||
|
|
|
@ -26,8 +26,6 @@
|
|||
#ifndef GDB_SERVER_H
|
||||
#define GDB_SERVER_H
|
||||
|
||||
#include "target.h"
|
||||
|
||||
struct image;
|
||||
|
||||
#define GDB_BUFFER_SIZE 16384
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
#ifndef ARM_ADI_V5_H
|
||||
#define ARM_ADI_V5_H
|
||||
|
||||
#include "target.h"
|
||||
#include "arm_jtag.h"
|
||||
|
||||
#define DAP_IR_DPACC 0xA
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "log.h"
|
||||
#include "target.h"
|
||||
#include "armv4_5_mmu.h"
|
||||
|
||||
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
#define ARMV4_5_MMU_H
|
||||
|
||||
#include "armv4_5_cache.h"
|
||||
#include "target.h"
|
||||
|
||||
struct target;
|
||||
|
||||
struct armv4_5_mmu_common
|
||||
{
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include "armv7a.h"
|
||||
#include "arm_disassembler.h"
|
||||
|
||||
#include "target.h"
|
||||
#include "register.h"
|
||||
#include "binarybuffer.h"
|
||||
#include "command.h"
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#ifndef ARMV7A_H
|
||||
#define ARMV7A_H
|
||||
|
||||
#include "target.h"
|
||||
#include "arm_adi_v5.h"
|
||||
#include "armv4_5.h"
|
||||
#include "armv4_5_mmu.h"
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
#endif
|
||||
|
||||
#include "breakpoints.h"
|
||||
#include "target.h"
|
||||
#include "armv7m.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#ifndef CORTEX_A8_H
|
||||
#define CORTEX_A8_H
|
||||
|
||||
#include "target.h"
|
||||
#include "armv7a.h"
|
||||
|
||||
extern char* cortex_a8_state_strings[];
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "target.h"
|
||||
#include "target_request.h"
|
||||
#include "target_type.h"
|
||||
#include "binarybuffer.h"
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
#ifndef TARGET_REQUEST_H
|
||||
#define TARGET_REQUEST_H
|
||||
|
||||
#include "target.h"
|
||||
struct target;
|
||||
struct command_context;
|
||||
|
||||
typedef enum target_req_cmd
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue