diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 09:52:20 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:13 -0800 |
commit | ac927559c3ce5406adac34b9d4ca4ecb37a48181 (patch) | |
tree | c80df94596067ffbbf47225aa1ff2570473fb256 /src/ecosboard.c | |
parent | d64a873db44258470b50f370f2c8af71157952d0 (diff) | |
download | riscv-openocd-ac927559c3ce5406adac34b9d4ca4ecb37a48181.zip riscv-openocd-ac927559c3ce5406adac34b9d4ca4ecb37a48181.tar.gz riscv-openocd-ac927559c3ce5406adac34b9d4ca4ecb37a48181.tar.bz2 |
target_type_t -> struct target_type
Remove misleading typedef and redundant suffix from struct target_type.
Diffstat (limited to 'src/ecosboard.c')
-rw-r--r-- | src/ecosboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ecosboard.c b/src/ecosboard.c index 8d85fe6..455c93c 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -115,7 +115,7 @@ char hwaddr[512]; extern struct flash_driver *flash_drivers[]; -extern target_type_t *target_types[]; +extern struct target_type *target_types[]; #ifdef CYGPKG_PROFILE_GPROF #include <cyg/profile/profile.h> |