mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[ARM] Fix assignment instead of condition in arm/mach-omap2/clock.c
Fix assignment instead of condition Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
fd3d72859b
commit
710798c3e1
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user