The patch titled mtd/nand: fix build failure caused by typo has been removed from the -mm tree. Its filename was mtd-nand-fix-build-failure-caused-by-typo.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mtd/nand: fix build failure caused by typo From: Peter Huewe <peterhuewe@xxxxxx> Fix a build failure introduced by the patch mtd: orion_nand.c: add error handling and use resource_size() The patch assigns something to a undeclared variable 'err', whereas the rest of the code uses 'ret' for this task. Signed-off-by: Peter Huewe <peterhuewe@xxxxxx> Reviewed-by: H Hartley Sweeten <hsweeten@xxxxxxxxxxxxxxxxxxx> Acked-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mtd/nand/orion_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mtd/nand/orion_nand.c~mtd-nand-fix-build-failure-caused-by-typo drivers/mtd/nand/orion_nand.c --- a/drivers/mtd/nand/orion_nand.c~mtd-nand-fix-build-failure-caused-by-typo +++ a/drivers/mtd/nand/orion_nand.c @@ -92,7 +92,7 @@ static int __init orion_nand_probe(struc res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (!res) { - err = -ENODEV; + ret = -ENODEV; goto no_res; } _ Patches currently in -mm which might be from peterhuewe@xxxxxx are mtd-nand-fix-build-failure-caused-by-typo.patch linux-next.patch scsi-add-__init-__exit-macros-to-ibmvstgtc.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html