Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=710798c3e1f995ac88be6d0fa030566e9b4b8f06
Commit:     710798c3e1f995ac88be6d0fa030566e9b4b8f06
Parent:     fd3d72859b5fab00aba2e7ce5ca65744f6720769
Author:     Roel Kluin <[EMAIL PROTECTED]>
AuthorDate: Fri Oct 26 23:22:51 2007 +0200
Committer:  Russell King <[EMAIL PROTECTED]>
CommitDate: Wed Oct 31 15:21:43 2007 +0000

    [ARM] Fix assignment instead of condition in arm/mach-omap2/clock.c
    
    Fix assignment instead of condition
    
    Signed-off-by: Roel Kluin <[EMAIL PROTECTED]>
    Acked-by: Tony Lindgren <[EMAIL PROTECTED]>
    Signed-off-by: Russell King <[EMAIL PROTECTED]>
---
 arch/arm/mach-omap2/clock.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c
index d9af436..e6e85b7 100644
--- a/arch/arm/mach-omap2/clock.c
+++ b/arch/arm/mach-omap2/clock.c
@@ -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:
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to