-stable review patch. If anyone has any objections, please let us know.
---------------------
From: Alan Cox <[email protected]>
upstream commit: 803c78e4da28d7d7cb0642caf643b9289ae7838a
Trivial error path leak fix. Problem found by Daniel Marjamäki using
cppcheck
Signed-off-by: Alan Cox <[email protected]>
Acked-by: Tony Lindgren <[email protected]>
Signed-off-by: Russell King <[email protected]>
Signed-off-by: Chris Wright <[email protected]>
---
arch/arm/mach-omap2/mmc-twl4030.c | 1 +
1 file changed, 1 insertion(+)
--- a/arch/arm/mach-omap2/mmc-twl4030.c
+++ b/arch/arm/mach-omap2/mmc-twl4030.c
@@ -397,6 +397,7 @@ void __init twl4030_mmc_init(struct twl4
break;
default:
pr_err("MMC%d configuration not supported!\n", c->mmc);
+ kfree(mmc);
continue;
}
hsmmc_data[c->mmc - 1] = mmc;