diff options
author | Wu, Josh <Josh.wu@atmel.com> | 2012-08-23 00:05:35 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 17:06:14 +0200 |
commit | ae79794e544c5079c85596d01022b92c30a7eeb1 (patch) | |
tree | 1f6d786b24bc61fa9869cdade9d98b23ca26ff39 /drivers/mtd/nand | |
parent | fe2185ea809955ff2e7364c16ef469df50d39af3 (diff) | |
download | u-boot-imx-ae79794e544c5079c85596d01022b92c30a7eeb1.zip u-boot-imx-ae79794e544c5079c85596d01022b92c30a7eeb1.tar.gz u-boot-imx-ae79794e544c5079c85596d01022b92c30a7eeb1.tar.bz2 |
at91: atmel_nand: remove unused variables.
Signed-off-by: Josh Wu <josh.wu@atmel.com>
Acked-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/atmel_nand.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index f8b38f7..cc609b1 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -79,7 +79,6 @@ static struct nand_ecclayout atmel_oobinfo_small = { static int atmel_nand_calculate(struct mtd_info *mtd, const u_char *dat, unsigned char *ecc_code) { - struct nand_chip *nand_chip = mtd->priv; unsigned int ecc_value; /* get the first 2 ECC bytes */ @@ -167,7 +166,7 @@ static int atmel_nand_correct(struct mtd_info *mtd, u_char *dat, u_char *read_ecc, u_char *isnull) { struct nand_chip *nand_chip = mtd->priv; - unsigned int ecc_status, ecc_parity, ecc_mode; + unsigned int ecc_status; unsigned int ecc_word, ecc_bit; /* get the status from the Status Register */ |