Commit 155b44aa authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: comedi: 8253: fix coding style error

The line was too long.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 334a33d8
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment