diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 07:32:27 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:06 -0800 |
commit | 2ded74115d2b1dcea5a1c1a327a0da159cf1b962 (patch) | |
tree | 66ae69a446f30df2d30bc4a2586df01c6f0651d5 /src/flash | |
parent | 1f328f2885f370aa9f79d2ed08515821bc8d856a (diff) | |
download | openocd+libswd-2ded74115d2b1dcea5a1c1a327a0da159cf1b962.tar.gz openocd+libswd-2ded74115d2b1dcea5a1c1a327a0da159cf1b962.tar.bz2 openocd+libswd-2ded74115d2b1dcea5a1c1a327a0da159cf1b962.tar.xz openocd+libswd-2ded74115d2b1dcea5a1c1a327a0da159cf1b962.zip |
cfi_atmel_pri_ext_t -> struct cfi_atmel_pri_ext
Remove misleading typedef and redundant suffix from struct cfi_atmel_pri_ext.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/cfi.c | 2 | ||||
-rw-r--r-- | src/flash/cfi.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/flash/cfi.c b/src/flash/cfi.c index 39eb16c7..fe80c74e 100644 --- a/src/flash/cfi.c +++ b/src/flash/cfi.c @@ -446,7 +446,7 @@ static int cfi_read_spansion_pri_ext(flash_bank_t *bank) static int cfi_read_atmel_pri_ext(flash_bank_t *bank) { int retval; - cfi_atmel_pri_ext_t atmel_pri_ext; + struct cfi_atmel_pri_ext atmel_pri_ext; struct cfi_flash_bank *cfi_info = bank->driver_priv; cfi_spansion_pri_ext_t *pri_ext = malloc(sizeof(cfi_spansion_pri_ext_t)); target_t *target = bank->target; diff --git a/src/flash/cfi.h b/src/flash/cfi.h index 89ddc404..565f8ef1 100644 --- a/src/flash/cfi.h +++ b/src/flash/cfi.h @@ -120,7 +120,7 @@ typedef struct cfi_spansion_pri_ext_s /* Atmel primary extended query table as defined for and used by * the linux kernel cfi driver (as of 2.6.20+) */ -typedef struct cfi_atmel_pri_ext_s +struct cfi_atmel_pri_ext { uint8_t pri[3]; uint8_t major_version; @@ -129,7 +129,7 @@ typedef struct cfi_atmel_pri_ext_s uint8_t bottom_boot; uint8_t burst_mode; uint8_t page_mode; -} cfi_atmel_pri_ext_t; +}; enum { CFI_UNLOCK_555_2AA, |