From: Aaro Koskinen Date: Fri, 28 Jan 2011 14:50:55 +0000 (+0000) Subject: arm: mach-omap2: mux: free allocated memory on error exit X-Git-Tag: firefly_0821_release~7613^2~2339^2~11 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9d47e309015b8d5ab32851cd0216e4b96b6407e4;p=firefly-linux-kernel-4.4.55.git arm: mach-omap2: mux: free allocated memory on error exit Free allocated memory on error exit. Signed-off-by: Aaro Koskinen Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c index fae49d12bc76..98148b6c36e9 100644 --- a/arch/arm/mach-omap2/mux.c +++ b/arch/arm/mach-omap2/mux.c @@ -1000,6 +1000,7 @@ int __init omap_mux_init(const char *name, u32 flags, if (!partition->base) { pr_err("%s: Could not ioremap mux partition at 0x%08x\n", __func__, partition->phys); + kfree(partition); return -ENODEV; }