aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/mach-mx31moboard.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-07-04 21:03:10 +0200
committerShawn Guo <shawn.guo@freescale.com>2014-07-18 16:11:36 +0800
commitd3a22442307a37225d99a5137fcbd9fbb2f5c343 (patch)
tree58f29e663daeb2f9832c00fbcdbf85332730ccb1 /arch/arm/mach-imx/mach-mx31moboard.c
parentbus: imx-weim: populate devices on a simple bus (diff)
downloadlinux-dev-d3a22442307a37225d99a5137fcbd9fbb2f5c343.tar.xz
linux-dev-d3a22442307a37225d99a5137fcbd9fbb2f5c343.zip
ARM: imx: use PTR_ERR_OR_ZERO
replace IS_ERR/PTR_ERR Cc: Sascha Hauer <kernel@pengutronix.de> Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/mach-imx/mach-mx31moboard.c')
-rw-r--r--arch/arm/mach-imx/mach-mx31moboard.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/mach-imx/mach-mx31moboard.c b/arch/arm/mach-imx/mach-mx31moboard.c
index 6bed57040973..bb6f8a52a6b8 100644
--- a/arch/arm/mach-imx/mach-mx31moboard.c
+++ b/arch/arm/mach-imx/mach-mx31moboard.c
@@ -435,10 +435,8 @@ static int __init moboard_usbh2_init(void)
return -ENODEV;
pdev = imx31_add_mxc_ehci_hs(2, &usbh2_pdata);
- if (IS_ERR(pdev))
- return PTR_ERR(pdev);
- return 0;
+ return PTR_ERR_OR_ZERO(pdev);
}
static const struct gpio_led mx31moboard_leds[] __initconst = {