mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging:vt6656:card.c: fix block comments should align the * on each line
Block comments should align the * on each line as reported by checkpatch.pl Signed-off-by: Mikhail Golubev <golubev.mikhail@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4b6588dc2f
commit
f4190ce37f
1 changed files with 2 additions and 2 deletions
|
@ -610,8 +610,8 @@ u64 vnt_get_next_tbtt(u64 tsf, u16 beacon_interval)
|
|||
beacon_int = beacon_interval * 1024;
|
||||
|
||||
/* Next TBTT =
|
||||
* ((local_current_TSF / beacon_interval) + 1) * beacon_interval
|
||||
*/
|
||||
* ((local_current_TSF / beacon_interval) + 1) * beacon_interval
|
||||
*/
|
||||
if (beacon_int) {
|
||||
do_div(tsf, beacon_int);
|
||||
tsf += 1;
|
||||
|
|
Loading…
Reference in a new issue