Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 710798c3 authored by Roel Kluin's avatar Roel Kluin Committed by Russell King
Browse files

[ARM] Fix assignment instead of condition in arm/mach-omap2/clock.c



Fix assignment instead of condition

Signed-off-by: default avatarRoel Kluin <12o3l@tiscali.nl>
Acked-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent fd3d7285
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -651,7 +651,7 @@ static u32 omap2_get_clksel(u32 *div_sel, u32 *field_mask,
		break;
	case CM_SYSCLKOUT_SEL1:
		div_addr = (u32)&PRCM_CLKOUT_CTRL;
		if ((div_off == 3) || (div_off = 11))
		if ((div_off == 3) || (div_off == 11))
			mask= 0x3;
		break;
	case CM_CORE_SEL1: