summaryrefslogtreecommitdiff
path: root/src/flash/mflash.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:38:21 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:07 -0800
commitbb6b9988cbd32f5f87e228340172aa1004775df2 (patch)
tree194377a124e35f6b6384fb10ef0099a1c9cfbd79 /src/flash/mflash.h
parentfc01dd6a13167c33491b9ccc1543d34b2e485c32 (diff)
downloadopenocd+libswd-bb6b9988cbd32f5f87e228340172aa1004775df2.tar.gz
openocd+libswd-bb6b9988cbd32f5f87e228340172aa1004775df2.tar.bz2
openocd+libswd-bb6b9988cbd32f5f87e228340172aa1004775df2.tar.xz
openocd+libswd-bb6b9988cbd32f5f87e228340172aa1004775df2.zip
mg_drv_info_t -> struct mg_drv_info
Remove misleading typedef and redundant suffix from struct mg_drv_info.
Diffstat (limited to 'src/flash/mflash.h')
-rw-r--r--src/flash/mflash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/flash/mflash.h b/src/flash/mflash.h
index c09120b6..da0c056e 100644
--- a/src/flash/mflash.h
+++ b/src/flash/mflash.h
@@ -125,10 +125,10 @@ typedef struct _mg_pll_t
unsigned char output_div; /* 2bit divider */
} mg_pll_t;
-typedef struct mg_drv_info_s {
+struct mg_drv_info {
mg_io_type_drv_info drv_id;
uint32_t tot_sects;
-} mg_drv_info_t;
+};
typedef struct mflash_bank_s
{
@@ -138,7 +138,7 @@ typedef struct mflash_bank_s
struct mflash_gpio_drv *gpio_drv;
target_t *target;
- mg_drv_info_t *drv_info;
+ struct mg_drv_info *drv_info;
} mflash_bank_t;
int mflash_register_commands(struct command_context_s *cmd_ctx);