Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=96989d9d754ef1fa55e71beff6a076f79cc1717e
Commit:     96989d9d754ef1fa55e71beff6a076f79cc1717e
Parent:     322392646bc36ff4381861e6589c22c1abc20dbf
Author:     Andy Whitcroft <[EMAIL PROTECTED]>
AuthorDate: Fri Aug 17 01:25:34 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Fri Aug 17 01:25:34 2007 +0900

    sh: remove extraneous ; on scif_sercon_putc wait loop
    
    It seems we have gained an extraneous trailing ';' on one of the
    wait loops in scif_sercon_putc().  Although this is completely
    benign as the apparent payload is also the empty statement, it
    invites error in the future.  Clean it up now.
    
    Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 arch/sh/kernel/early_printk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/sh/kernel/early_printk.c b/arch/sh/kernel/early_printk.c
index 9833493..80b637c 100644
--- a/arch/sh/kernel/early_printk.c
+++ b/arch/sh/kernel/early_printk.c
@@ -76,7 +76,7 @@ static void scif_sercon_putc(int c)
        sci_in(&scif_port, SCxSR);
        sci_out(&scif_port, SCxSR, 0xf3 & ~(0x20 | 0x40));
 
-       while ((sci_in(&scif_port, SCxSR) & 0x40) == 0);
+       while ((sci_in(&scif_port, SCxSR) & 0x40) == 0)
                ;
 
        if (c == '\n')
-
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