mtd: orion_nand: Fix build failure caused by typo
authorPeter Huewe <peterhuewe@gmx.de>
Thu, 7 Jan 2010 01:51:13 +0000 (02:51 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Wed, 10 Feb 2010 18:14:39 +0000 (18:14 +0000)
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>
drivers/mtd/nand/orion_nand.c

index 9903460..f16050c 100644 (file)
@@ -92,7 +92,7 @@ static int __init orion_nand_probe(struct platform_device *pdev)
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        if (!res) {
-               err = -ENODEV;
+               ret = -ENODEV;
                goto no_res;
        }