From 2f6e56e38320350bb300b363d0b3737fa8d1f3ea Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 11:32:17 -0800 Subject: nand_device_t -> struct nand_device Remove misleading typedef and redundant suffix from struct nand_device. --- src/flash/nand_ecc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/flash/nand_ecc.c') diff --git a/src/flash/nand_ecc.c b/src/flash/nand_ecc.c index 81d2bebc..7aa1519d 100644 --- a/src/flash/nand_ecc.c +++ b/src/flash/nand_ecc.c @@ -68,7 +68,7 @@ static const uint8_t nand_ecc_precalc_table[] = { /* * nand_calculate_ecc - Calculate 3-byte ECC for 256-byte block */ -int nand_calculate_ecc(struct nand_device_s *nand, const uint8_t *dat, uint8_t *ecc_code) +int nand_calculate_ecc(struct nand_device *nand, const uint8_t *dat, uint8_t *ecc_code) { uint8_t idx, reg1, reg2, reg3, tmp1, tmp2; int i; -- cgit v1.2.3