Remove misleading typedef and redundant suffix from struct nand_info.
* 256 256 Byte page size
* 512 512 Byte page size
*/
-static nand_info_t nand_flash_ids[] =
+static struct nand_info nand_flash_ids[] =
{
/* start "museum" IDs */
{"NAND 1MiB 5V 8-bit", 0x6e, 256, 1, 0x1000, 0},
struct nand_flash_controller *controller;
void *controller_priv;
struct nand_manufacturer *manufacturer;
- struct nand_info_s *device;
+ struct nand_info *device;
int bus_width;
int address_cycles;
int page_size;
char *name;
};
-typedef struct nand_info_s
+struct nand_info
{
char *name;
int id;
int chip_size;
int erase_size;
int options;
-} nand_info_t;
+};
/* Option constants for bizarre disfunctionality and real features
*/