diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2013-06-01 11:44:44 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-07-04 14:10:51 +0200 |
commit | 1261674a2dded2b5b055f51fb44677a8654d3f06 (patch) | |
tree | b62190ef934006dcd7d2cc4122c91285e3d61142 /arch/arm/mach-omap2/devices.c | |
parent | ARM: OMAP2+: Remove obsolete Makefile line (diff) | |
download | linux-1261674a2dded2b5b055f51fb44677a8654d3f06.tar.xz linux-1261674a2dded2b5b055f51fb44677a8654d3f06.zip |
ARM: OMAP2+: Cocci spatch "ptr_ret.spatch"
Cocci spatch "ptr_ret.spatch"
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Acked-by: Kevin Hilman <khilman@linaro.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index aef96e45cb20..c3bc58b88fa6 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -66,7 +66,7 @@ static int __init omap3_l3_init(void) WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name); - return IS_ERR(pdev) ? PTR_ERR(pdev) : 0; + return PTR_RET(pdev); } omap_postcore_initcall(omap3_l3_init); @@ -100,7 +100,7 @@ static int __init omap4_l3_init(void) WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name); - return IS_ERR(pdev) ? PTR_ERR(pdev) : 0; + return PTR_RET(pdev); } omap_postcore_initcall(omap4_l3_init); |