The patch titled sdio-driver-for-marvell-socs update has been removed from the -mm tree. Its filename was sdio-driver-for-marvell-socs-update.patch This patch was dropped because it was folded into sdio-driver-for-marvell-socs.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: sdio-driver-for-marvell-socs update From: Maen Suleiman <maen@xxxxxxxxxxx> fix leak Signed-off-by: Nicolas Pitre <nico@xxxxxxxxxxx> Cc: Maen Suleiman <maen@xxxxxxxxxxx> Cc: Pierre Ossman <drzeus-mmc@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mmc/host/mvsdio.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/mmc/host/mvsdio.c~sdio-driver-for-marvell-socs-update drivers/mmc/host/mvsdio.c --- a/drivers/mmc/host/mvsdio.c~sdio-driver-for-marvell-socs-update +++ a/drivers/mmc/host/mvsdio.c @@ -688,6 +688,7 @@ static int __init mvsd_probe(struct plat mmc = mmc_alloc_host(sizeof(struct mvsd_host), &pdev->dev); if (!mmc) { + release_resource(r); ret = -ENOMEM; goto out; } _ Patches currently in -mm which might be from maen@xxxxxxxxxxx are sdio-driver-for-marvell-socs.patch sdio-driver-for-marvell-socs-update.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