nand_block_t -> struct nand_block

Remove misleading typedef and redundant suffix from struct nand_block.
This commit is contained in:
Zachary T Welch 2009-11-13 07:41:10 -08:00
parent 92fc7a6fde
commit d0dfec33b6
2 changed files with 4 additions and 4 deletions

View File

@ -602,7 +602,7 @@ int nand_probe(struct nand_device_s *nand)
}
nand->num_blocks = (nand->device->chip_size * 1024) / (nand->erase_size / 1024);
nand->blocks = malloc(sizeof(nand_block_t) * nand->num_blocks);
nand->blocks = malloc(sizeof(struct nand_block) * nand->num_blocks);
for (i = 0; i < nand->num_blocks; i++)
{

View File

@ -53,13 +53,13 @@ struct nand_flash_controller
#define NAND_DEVICE_COMMAND_HANDLER(name) static __NAND_DEVICE_COMMAND(name)
typedef struct nand_block_s
struct nand_block
{
uint32_t offset;
uint32_t size;
int is_erased;
int is_bad;
} nand_block_t;
};
struct nand_oobfree {
int offset;
@ -85,7 +85,7 @@ typedef struct nand_device_s
int erase_size;
int use_raw;
int num_blocks;
nand_block_t *blocks;
struct nand_block *blocks;
struct nand_device_s *next;
} nand_device_t;