nand_ecclayout_t -> struct nand_ecclayout

Remove misleading typedef and redundant suffix from struct nand_ecclayout.
This commit is contained in:
Zachary T Welch
2009-11-13 07:38:35 -08:00
parent 8605352387
commit 8f4860d13f
2 changed files with 5 additions and 5 deletions

View File

@@ -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
{