diff options
author | Rabin Vincent <rabin@rab.in> | 2011-05-07 22:28:47 +0530 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-06-01 02:25:04 -0700 |
commit | 1499f2dbafafe844e485ff8945f60cd9f3d5cbd9 (patch) | |
tree | 8a38961346fb13a223a67d50db927862220484e1 /arch/arm | |
parent | 50b4860d577b4bef76c71ad38ef83b9f368283c2 (diff) | |
download | linux-stable-1499f2dbafafe844e485ff8945f60cd9f3d5cbd9.tar.gz linux-stable-1499f2dbafafe844e485ff8945f60cd9f3d5cbd9.tar.bz2 linux-stable-1499f2dbafafe844e485ff8945f60cd9f3d5cbd9.zip |
OMAP4: fix return value of omap4_l3_init
Don't PTR_ERR() a non-error pointer:
initcall omap4_l3_init+0x0/0xdc returned -544980480 after 0 usecs
initcall omap4_l3_init+0x0/0xdc returned with error code -544980480
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 7b8558564591..5b8ca680ed93 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -97,7 +97,7 @@ static int __init omap4_l3_init(void) WARN(IS_ERR(od), "could not build omap_device for %s\n", oh_name); - return PTR_ERR(od); + return IS_ERR(od) ? PTR_ERR(od) : 0; } postcore_initcall(omap4_l3_init); |