diff options
author | Alexander Beregalov <[email protected]> | 2010-03-05 13:44:19 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-03-06 11:26:46 -0800 |
commit | 49908e739e23e2672d3efb9b1a35f877f8e86342 (patch) | |
tree | 6e86c37ce3736403c80bc4e4138116cc2e326c9a | |
parent | 27fb7f009bdb1ff13d4e4c008a2fd36b2305055b (diff) |
rtc: mxc: fix memory leak
Free pdata before exit. Found by cppcheck.
[[email protected]: add missing iounmap()]
Signed-off-by: Alexander Beregalov <[email protected]>
Reviewed-by: WANG Cong <[email protected]>
Acked-by: Daniel Mack <[email protected]>
Acked-by: Alessandro Zummo <[email protected]>
Cc Yoichi Yuasa <[email protected]>
Cc: Paul Gortmaker <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/rtc/rtc-mxc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-mxc.c b/drivers/rtc/rtc-mxc.c index 6bd5072d4eb7..8710f9415d98 100644 --- a/drivers/rtc/rtc-mxc.c +++ b/drivers/rtc/rtc-mxc.c @@ -396,8 +396,11 @@ static int __init mxc_rtc_probe(struct platform_device *pdev) pdata->ioaddr = ioremap(res->start, resource_size(res)); clk = clk_get(&pdev->dev, "ckil"); - if (IS_ERR(clk)) - return PTR_ERR(clk); + if (IS_ERR(clk)) { + iounmap(pdata->ioaddr); + ret = PTR_ERR(clk); + goto exit_free_pdata; + } rate = clk_get_rate(clk); clk_put(clk); |