From: Zachary T Welch Date: Fri, 13 Nov 2009 15:38:42 +0000 (-0800) Subject: nand_info_t -> struct nand_info X-Git-Tag: v0.4.0-rc1~739 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=958ff04b086d60e901bfd9c05cf7b4e3e5af641a;hp=f7ca04721300da7ddd4031885e98f3138825ccd1 nand_info_t -> struct nand_info Remove misleading typedef and redundant suffix from struct nand_info. --- diff --git a/src/flash/nand.c b/src/flash/nand.c index dba1877782..794836127d 100644 --- a/src/flash/nand.c +++ b/src/flash/nand.c @@ -74,7 +74,7 @@ static command_t *nand_cmd; * 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}, diff --git a/src/flash/nand.h b/src/flash/nand.h index 93fd34ff7f..ea31947984 100644 --- a/src/flash/nand.h +++ b/src/flash/nand.h @@ -78,7 +78,7 @@ typedef struct nand_device_s 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; @@ -109,7 +109,7 @@ struct nand_manufacturer char *name; }; -typedef struct nand_info_s +struct nand_info { char *name; int id; @@ -117,7 +117,7 @@ typedef struct nand_info_s int chip_size; int erase_size; int options; -} nand_info_t; +}; /* Option constants for bizarre disfunctionality and real features */