nand_ecclayout_t -> struct nand_ecclayout
Remove misleading typedef and redundant suffix from struct nand_ecclayout.__archive__
parent
8605352387
commit
8f4860d13f
|
@ -173,7 +173,7 @@ static nand_manufacturer_t nand_manuf_ids[] =
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
static nand_ecclayout_t nand_oob_8 = {
|
static struct nand_ecclayout nand_oob_8 = {
|
||||||
.eccbytes = 3,
|
.eccbytes = 3,
|
||||||
.eccpos = {0, 1, 2},
|
.eccpos = {0, 1, 2},
|
||||||
.oobfree = {
|
.oobfree = {
|
||||||
|
@ -184,7 +184,7 @@ static nand_ecclayout_t nand_oob_8 = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static nand_ecclayout_t nand_oob_16 = {
|
static struct nand_ecclayout nand_oob_16 = {
|
||||||
.eccbytes = 6,
|
.eccbytes = 6,
|
||||||
.eccpos = {0, 1, 2, 3, 6, 7},
|
.eccpos = {0, 1, 2, 3, 6, 7},
|
||||||
.oobfree = {
|
.oobfree = {
|
||||||
|
@ -192,7 +192,7 @@ static nand_ecclayout_t nand_oob_16 = {
|
||||||
. length = 8}}
|
. length = 8}}
|
||||||
};
|
};
|
||||||
|
|
||||||
static nand_ecclayout_t nand_oob_64 = {
|
static struct nand_ecclayout nand_oob_64 = {
|
||||||
.eccbytes = 24,
|
.eccbytes = 24,
|
||||||
.eccpos = {
|
.eccpos = {
|
||||||
40, 41, 42, 43, 44, 45, 46, 47,
|
40, 41, 42, 43, 44, 45, 46, 47,
|
||||||
|
|
|
@ -66,12 +66,12 @@ struct nand_oobfree {
|
||||||
int length;
|
int length;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct nand_ecclayout_s {
|
struct nand_ecclayout {
|
||||||
int eccbytes;
|
int eccbytes;
|
||||||
int eccpos[64];
|
int eccpos[64];
|
||||||
int oobavail;
|
int oobavail;
|
||||||
struct nand_oobfree oobfree[2];
|
struct nand_oobfree oobfree[2];
|
||||||
} nand_ecclayout_t;
|
};
|
||||||
|
|
||||||
typedef struct nand_device_s
|
typedef struct nand_device_s
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue