diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 07:38:35 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:07 -0800 |
commit | 8f4860d13f03c40b28bb32e9cb0f1d650e200ce9 (patch) | |
tree | 88cb3f40b8290d2e68286f54db3525c8b6e985be /src/flash | |
parent | 86053523875d18151f3dd0b53bf30e07eec2acf2 (diff) | |
download | openocd_libswd-8f4860d13f03c40b28bb32e9cb0f1d650e200ce9.tar.gz openocd_libswd-8f4860d13f03c40b28bb32e9cb0f1d650e200ce9.tar.bz2 openocd_libswd-8f4860d13f03c40b28bb32e9cb0f1d650e200ce9.tar.xz openocd_libswd-8f4860d13f03c40b28bb32e9cb0f1d650e200ce9.zip |
nand_ecclayout_t -> struct nand_ecclayout
Remove misleading typedef and redundant suffix from struct nand_ecclayout.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/nand.c | 6 | ||||
-rw-r--r-- | src/flash/nand.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/flash/nand.c b/src/flash/nand.c index 1249327a..b2017c3d 100644 --- a/src/flash/nand.c +++ b/src/flash/nand.c @@ -173,7 +173,7 @@ static nand_manufacturer_t nand_manuf_ids[] = */ #if 0 -static nand_ecclayout_t nand_oob_8 = { +static struct nand_ecclayout nand_oob_8 = { .eccbytes = 3, .eccpos = {0, 1, 2}, .oobfree = { @@ -184,7 +184,7 @@ static nand_ecclayout_t nand_oob_8 = { }; #endif -static nand_ecclayout_t nand_oob_16 = { +static struct nand_ecclayout nand_oob_16 = { .eccbytes = 6, .eccpos = {0, 1, 2, 3, 6, 7}, .oobfree = { @@ -192,7 +192,7 @@ static nand_ecclayout_t nand_oob_16 = { . length = 8}} }; -static nand_ecclayout_t nand_oob_64 = { +static struct nand_ecclayout nand_oob_64 = { .eccbytes = 24, .eccpos = { 40, 41, 42, 43, 44, 45, 46, 47, diff --git a/src/flash/nand.h b/src/flash/nand.h index ce7ed9df..922f08a9 100644 --- a/src/flash/nand.h +++ b/src/flash/nand.h @@ -66,12 +66,12 @@ struct nand_oobfree { int length; }; -typedef struct nand_ecclayout_s { +struct nand_ecclayout { int eccbytes; int eccpos[64]; int oobavail; struct nand_oobfree oobfree[2]; -} nand_ecclayout_t; +}; typedef struct nand_device_s { |