#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:
David Brownell
2009-11-16 00:35:24 -08:00
parent 8193f17c3a
commit b695cb7522
17 changed files with 10 additions and 15 deletions

View File

@@ -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

View File

@@ -22,6 +22,7 @@
#endif
#include "log.h"
#include "target.h"
#include "armv4_5_mmu.h"

View File

@@ -21,7 +21,8 @@
#define ARMV4_5_MMU_H
#include "armv4_5_cache.h"
#include "target.h"
struct target;
struct armv4_5_mmu_common
{

View File

@@ -25,7 +25,6 @@
#include "armv7a.h"
#include "arm_disassembler.h"
#include "target.h"
#include "register.h"
#include "binarybuffer.h"
#include "command.h"

View File

@@ -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"

View File

@@ -35,6 +35,7 @@
#endif
#include "breakpoints.h"
#include "target.h"
#include "armv7m.h"
#include "algorithm.h"
#include "register.h"

View File

@@ -29,7 +29,6 @@
#ifndef CORTEX_A8_H
#define CORTEX_A8_H
#include "target.h"
#include "armv7a.h"
extern char* cortex_a8_state_strings[];

View File

@@ -27,6 +27,7 @@
#include "config.h"
#endif
#include "target.h"
#include "target_request.h"
#include "target_type.h"
#include "binarybuffer.h"

View File

@@ -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
{