nand_manufacturer_t -> struct nand_manufacturer
Remove misleading typedef and redundant suffix from struct nand_manufacturer.
This commit is contained in:
parent
8f4860d13f
commit
f7ca047213
|
@ -154,7 +154,7 @@ static nand_info_t nand_flash_ids[] =
|
|||
|
||||
/* Manufacturer ID list
|
||||
*/
|
||||
static nand_manufacturer_t nand_manuf_ids[] =
|
||||
static struct nand_manufacturer nand_manuf_ids[] =
|
||||
{
|
||||
{0x0, "unknown"},
|
||||
{NAND_MFR_TOSHIBA, "Toshiba"},
|
||||
|
|
|
@ -77,7 +77,7 @@ typedef struct nand_device_s
|
|||
{
|
||||
struct nand_flash_controller *controller;
|
||||
void *controller_priv;
|
||||
struct nand_manufacturer_s *manufacturer;
|
||||
struct nand_manufacturer *manufacturer;
|
||||
struct nand_info_s *device;
|
||||
int bus_width;
|
||||
int address_cycles;
|
||||
|
@ -103,11 +103,11 @@ enum
|
|||
NAND_MFR_MICRON = 0x2c,
|
||||
};
|
||||
|
||||
typedef struct nand_manufacturer_s
|
||||
struct nand_manufacturer
|
||||
{
|
||||
int id;
|
||||
char *name;
|
||||
} nand_manufacturer_t;
|
||||
};
|
||||
|
||||
typedef struct nand_info_s
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue