summaryrefslogtreecommitdiff
path: root/src/target/armv7m.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:44:08 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:12 -0800
commit74d09617b927ed7011098d5a65087dee1ef1e87a (patch)
treeb73fe576548030923a72944b8f8a9e31bb9a342c /src/target/armv7m.h
parentde3fb2f3bce2de5be44223204ce368216ed85b0f (diff)
downloadopenocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.gz
openocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.bz2
openocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.xz
openocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.zip
reg_cache_t -> struct reg_cache
Remove misleading typedef and redundant suffix from struct reg_cache.
Diffstat (limited to 'src/target/armv7m.h')
-rw-r--r--src/target/armv7m.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv7m.h b/src/target/armv7m.h
index 43ec5632..2f4fbdb5 100644
--- a/src/target/armv7m.h
+++ b/src/target/armv7m.h
@@ -94,7 +94,7 @@ enum
struct armv7m_common
{
int common_magic;
- reg_cache_t *core_cache;
+ struct reg_cache *core_cache;
enum armv7m_mode core_mode;
int exception_number;
struct swjdp_common swjdp_info;
@@ -134,7 +134,7 @@ struct armv7m_core_reg
struct armv7m_common *armv7m_common;
};
-reg_cache_t *armv7m_build_reg_cache(target_t *target);
+struct reg_cache *armv7m_build_reg_cache(target_t *target);
enum armv7m_mode armv7m_number_to_mode(int number);
int armv7m_mode_to_number(enum armv7m_mode mode);