summaryrefslogtreecommitdiff
path: root/src/target/cortex_a8.h
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-11-24 21:24:44 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-24 21:24:44 -0800
commit991daa03ebbc69829be4a3899b77efb981254038 (patch)
tree5588015d6aaadc8f5c6a6afafcb51194f58862b7 /src/target/cortex_a8.h
parent338a674faa96ae321560efa3f1b1e8122d61aac4 (diff)
downloadopenocd+libswd-991daa03ebbc69829be4a3899b77efb981254038.tar.gz
openocd+libswd-991daa03ebbc69829be4a3899b77efb981254038.tar.bz2
openocd+libswd-991daa03ebbc69829be4a3899b77efb981254038.tar.xz
openocd+libswd-991daa03ebbc69829be4a3899b77efb981254038.zip
Cortex-A8: minor cleanup
Make various functions static, add some comments, report vector catch as a flavor of DBG_REASON_BREAKPOINT, get rid of needless/undesirable ARMV4_5_CORE_REG_MODE, etc. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/cortex_a8.h')
-rw-r--r--src/target/cortex_a8.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/target/cortex_a8.h b/src/target/cortex_a8.h
index 393a3104..1cb0e573 100644
--- a/src/target/cortex_a8.h
+++ b/src/target/cortex_a8.h
@@ -85,7 +85,7 @@ struct cortex_a8_brp
int type;
uint32_t value;
uint32_t control;
- uint8_t BRPn;
+ uint8_t BRPn;
};
struct cortex_a8_wrp
@@ -94,7 +94,7 @@ struct cortex_a8_wrp
int type;
uint32_t value;
uint32_t control;
- uint8_t WRPn;
+ uint8_t WRPn;
};
struct cortex_a8_common
@@ -140,7 +140,4 @@ target_to_cortex_a8(struct target *target)
armv7a_common.armv4_5_common);
}
-int cortex_a8_init_arch_info(struct target *target,
- struct cortex_a8_common *cortex_a8, struct jtag_tap *tap);
-
#endif /* CORTEX_A8_H */