diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 10:11:13 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:14 -0800 |
commit | 0f1163e823c6ca3c2a81fa296157f5dde0635fea (patch) | |
tree | 60551098bba500cd8b7fc4bd669d64fd3ed8f061 /src/flash/mflash.h | |
parent | d0dee7ccafcf87259fadf6c5de43df8583b0e885 (diff) | |
download | riscv-openocd-0f1163e823c6ca3c2a81fa296157f5dde0635fea.zip riscv-openocd-0f1163e823c6ca3c2a81fa296157f5dde0635fea.tar.gz riscv-openocd-0f1163e823c6ca3c2a81fa296157f5dde0635fea.tar.bz2 |
target_t -> struct target
Remove misleading typedef and redundant suffix from struct target.
Diffstat (limited to 'src/flash/mflash.h')
-rw-r--r-- | src/flash/mflash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/mflash.h b/src/flash/mflash.h index 59bd1b0..a2bd5b3 100644 --- a/src/flash/mflash.h +++ b/src/flash/mflash.h @@ -137,7 +137,7 @@ struct mflash_bank struct mflash_gpio_num rst_pin; struct mflash_gpio_drv *gpio_drv; - target_t *target; + struct target *target; struct mg_drv_info *drv_info; }; |