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++)
{