Staging: comedi: 8253: fix coding style error
authorGreg Kroah-Hartman <gregkh@suse.de>
Mon, 21 Sep 2009 18:35:45 +0000 (11:35 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 11 Dec 2009 20:21:48 +0000 (12:21 -0800)
The line was too long.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/8253.h

index c2ea2d9..0bb35db 100644 (file)
@@ -206,7 +206,8 @@ static inline void i8253_cascade_ns_to_timer_2div(int i8253_osc_base,
        }
 
        *nanosec = div1 * div2 * i8253_osc_base;
-       *d1 = div1 & 0xffff;    /*  masking is done since counter maps zero to 0x10000 */
+       /*  masking is done since counter maps zero to 0x10000 */
+       *d1 = div1 & 0xffff;
        *d2 = div2 & 0xffff;
        return;
 }