From: Wei Yongjun Date: Thu, 16 May 2013 22:25:34 +0000 (+0000) Subject: gianfar: add missing iounmap() on error in gianfar_ptp_probe() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e5f5e380e0f3bb11f04ca5bc66a551e58e0ad26e;p=linux-beck.git gianfar: add missing iounmap() on error in gianfar_ptp_probe() Add the missing iounmap() before return from gianfar_ptp_probe() in the error handling case. Signed-off-by: Wei Yongjun Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/freescale/gianfar_ptp.c b/drivers/net/ethernet/freescale/gianfar_ptp.c index 576e4b858fce..083ea2b4d20a 100644 --- a/drivers/net/ethernet/freescale/gianfar_ptp.c +++ b/drivers/net/ethernet/freescale/gianfar_ptp.c @@ -524,6 +524,7 @@ static int gianfar_ptp_probe(struct platform_device *dev) return 0; no_clock: + iounmap(etsects->regs); no_ioremap: release_resource(etsects->rsrc); no_resource: