diff options
author | Tony Lindgren <tony@atomide.com> | 2013-04-03 10:32:47 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-04-03 10:32:47 -0700 |
commit | 43231b5be657fde1c4ced180d829bbd59ceef9ad (patch) | |
tree | c20d5c79e63533abf71ab8f89598eb777e9bee2b /arch/arm/mach-omap2/board-omap3beagle.c | |
parent | 105612489bf59386b46b3f9f034e03f70e57aee6 (diff) | |
parent | 71856843fb1d8ee455a4c1a60696c74afa4809e5 (diff) | |
download | op-kernel-dev-43231b5be657fde1c4ced180d829bbd59ceef9ad.zip op-kernel-dev-43231b5be657fde1c4ced180d829bbd59ceef9ad.tar.gz |
Merge commit '7185684' into omap-for-v3.10/timer
Conflicts:
arch/arm/plat-omap/dmtimer.c
Resolve merge conflict in omap_device.c as per
Lothar Waßmann <LW@KARO-electronics.de>.
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3beagle.c')
-rw-r--r-- | arch/arm/mach-omap2/board-omap3beagle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index c3558f9..6c949bc 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -479,7 +479,7 @@ static int __init beagle_opp_init(void) /* Initialize the omap3 opp table if not already created. */ r = omap3_opp_init(); - if (IS_ERR_VALUE(r) && (r != -EEXIST)) { + if (r < 0 && (r != -EEXIST)) { pr_err("%s: opp default init failed\n", __func__); return r; } |