summaryrefslogtreecommitdiff
path: root/src/flash/non_cfi.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:41:28 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:08 -0800
commit54be77bc79ce05cd1ce4320958d8ce9d131aea09 (patch)
tree0585387c91dad45159b2407744b5d6878a52f44f /src/flash/non_cfi.c
parentd0dfec33b6d6844c3c1b817a464b9f040ce40087 (diff)
downloadopenocd+libswd-54be77bc79ce05cd1ce4320958d8ce9d131aea09.tar.gz
openocd+libswd-54be77bc79ce05cd1ce4320958d8ce9d131aea09.tar.bz2
openocd+libswd-54be77bc79ce05cd1ce4320958d8ce9d131aea09.tar.xz
openocd+libswd-54be77bc79ce05cd1ce4320958d8ce9d131aea09.zip
non_cfi_t -> struct non_cfi
Remove misleading typedef and redundant suffix from struct non_cfi.
Diffstat (limited to 'src/flash/non_cfi.c')
-rw-r--r--src/flash/non_cfi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/non_cfi.c b/src/flash/non_cfi.c
index 0da8ba37..808e642e 100644
--- a/src/flash/non_cfi.c
+++ b/src/flash/non_cfi.c
@@ -32,7 +32,7 @@
#define ERASE_REGION(num, size) (((size/256) << 16) | (num-1))
/* non-CFI compatible flashes */
-static non_cfi_t non_cfi_flashes[] = {
+static struct non_cfi non_cfi_flashes[] = {
{
.mfr = CFI_MFR_SST,
.id = 0xd4,
@@ -406,7 +406,7 @@ static non_cfi_t non_cfi_flashes[] = {
void cfi_fixup_non_cfi(flash_bank_t *bank)
{
struct cfi_flash_bank *cfi_info = bank->driver_priv;
- non_cfi_t *non_cfi = non_cfi_flashes;
+ struct non_cfi *non_cfi = non_cfi_flashes;
for (non_cfi = non_cfi_flashes; non_cfi->mfr; non_cfi++)
{