aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Huewe <peterhuewe@gmx.de>2010-01-06 20:51:13 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-02-10 13:14:39 -0500
commit2d6bfc261a02662ec7a3a78df3e05e453e8b168d (patch)
tree226e73d5967547267197f67aa80be736f82ce9a3
parent7603757993e7ce3e63b2280ccf61d8058b7b2414 (diff)
mtd: orion_nand: Fix build failure caused by typo
Commit e99030609e27abff7e1a868cb56384c678b09984 ("mtd: orion_nand.c: add error handling and use resource_size()") introduced a build error -- it assigns something to a undeclared variable 'err', whereas the rest of the code uses 'ret' for this task. This patch fixes this typo and thus removes the build failure. Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--drivers/mtd/nand/orion_nand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/orion_nand.c b/drivers/mtd/nand/orion_nand.c
index 990346036d37..f16050c61c5c 100644
--- a/drivers/mtd/nand/orion_nand.c
+++ b/drivers/mtd/nand/orion_nand.c
@@ -92,7 +92,7 @@ static int __init orion_nand_probe(struct platform_device *pdev)
92 92
93 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 93 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
94 if (!res) { 94 if (!res) {
95 err = -ENODEV; 95 ret = -ENODEV;
96 goto no_res; 96 goto no_res;
97 } 97 }
98 98