Skip to content

Commit

Permalink
Staging: comedi: 8253: fix coding style error
Browse files Browse the repository at this point in the history
The line was too long.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Dec 11, 2009
1 parent 334a33d commit 155b44a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/comedi/drivers/8253.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 155b44a

Please sign in to comment.