summaryrefslogtreecommitdiff
path: root/src/target/arm11.h
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-12-02 22:57:07 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-12-02 23:08:42 -0800
commit1d29440a9c6a7ceb933a4aa407387cc7d9f8bdb2 (patch)
tree9ada1b9f3c29436deddf5810b88ebd0c6d269210 /src/target/arm11.h
parentc2af99d4717837761b6df750e1fe75797c910b23 (diff)
downloadopenocd+libswd-1d29440a9c6a7ceb933a4aa407387cc7d9f8bdb2.tar.gz
openocd+libswd-1d29440a9c6a7ceb933a4aa407387cc7d9f8bdb2.tar.bz2
openocd+libswd-1d29440a9c6a7ceb933a4aa407387cc7d9f8bdb2.tar.xz
openocd+libswd-1d29440a9c6a7ceb933a4aa407387cc7d9f8bdb2.zip
ARM11: remove arm11->target
Don't need/want arm11->target; we have arm11->arm.target instead. Also remove some unused watchpoint stuff.
Diffstat (limited to 'src/target/arm11.h')
-rw-r--r--src/target/arm11.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/target/arm11.h b/src/target/arm11.h
index c3f4e864..e5c92def 100644
--- a/src/target/arm11.h
+++ b/src/target/arm11.h
@@ -51,18 +51,13 @@ enum arm11_debug_version
struct arm11_common
{
struct arm arm;
- struct target * target; /**< Reference back to the owner */
/** Debug module state. */
struct arm_dpm dpm;
- /** \name Processor type detection */
- /*@{*/
-
size_t brp; /**< Number of Breakpoint Register Pairs from DIDR */
size_t wrp; /**< Number of Watchpoint Register Pairs from DIDR */
-
- /*@}*/
+ size_t free_brps; /**< Number of breakpoints allocated */
uint32_t last_dscr; /**< Last retrieved DSCR value;
Use only for debug message generation */
@@ -77,8 +72,6 @@ struct arm11_common
/*@}*/
- size_t free_brps; /**< keep track of breakpoints allocated by arm11_add_breakpoint() */
- size_t free_wrps; /**< keep track of breakpoints allocated by arm11_add_watchpoint() */
// GA
struct reg_cache *core_cache;