summaryrefslogtreecommitdiff
path: root/src/target/target.h
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-12-08 13:06:41 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-12-08 13:06:41 -0800
commitcbea1ed71febd8cf64482b36381765eaabfc66ec (patch)
tree7e5825a901e3f57aa7296d3b07c15a789dbc5df4 /src/target/target.h
parente7acbdf5dbfcea427fc8b0fc7e8dd2e1005a4cc8 (diff)
downloadopenocd+libswd-cbea1ed71febd8cf64482b36381765eaabfc66ec.tar.gz
openocd+libswd-cbea1ed71febd8cf64482b36381765eaabfc66ec.tar.bz2
openocd+libswd-cbea1ed71febd8cf64482b36381765eaabfc66ec.tar.xz
openocd+libswd-cbea1ed71febd8cf64482b36381765eaabfc66ec.zip
target: remove needless "extern"s
Most of these happened to be in the target.h file. Some of those are associated with symbols that could be removed at some point ... e.g. NVP_ASSERT/true and its sibling NVP_DEASSERT/false. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/target.h')
-rw-r--r--src/target/target.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/target/target.h b/src/target/target.h
index dd3d4f7f..fededb95 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -61,15 +61,11 @@ enum target_state
TARGET_DEBUG_RUNNING = 4,
};
-extern const Jim_Nvp nvp_target_state[];
-
enum nvp_assert {
NVP_DEASSERT,
NVP_ASSERT,
};
-extern const Jim_Nvp nvp_assert[];
-
enum target_reset_mode
{
RESET_UNKNOWN = 0,
@@ -78,8 +74,6 @@ enum target_reset_mode
RESET_INIT = 3, /* reset and halt target out of reset, then run init script */
};
-extern const Jim_Nvp nvp_reset_mode[];
-
enum target_debug_reason
{
DBG_REASON_DBGRQ = 0,
@@ -97,8 +91,6 @@ enum target_endianess
TARGET_BIG_ENDIAN = 1, TARGET_LITTLE_ENDIAN = 2
};
-extern const Jim_Nvp nvp_target_endian[];
-
struct working_area
{
uint32_t address;
@@ -490,8 +482,6 @@ void target_all_handle_event(enum target_event e);
#define ERROR_TARGET_NOT_RUNNING (-310)
#define ERROR_TARGET_NOT_EXAMINED (-311)
-extern const Jim_Nvp nvp_error_target[];
-
const char *target_strerror_safe(int err);
#endif /* TARGET_H */