Skip to content

Commit

Permalink
staging: vt6656: Split arguments to avoid 80-char violation in rf.c
Browse files Browse the repository at this point in the history
Wrap arguments of call to vnt_control_out() to avoid exceeding 80
character limit, but maintain alignment.

Signed-off-by: Daniel Cashman <dan.a.cashman@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Dan Cashman authored and Greg Kroah-Hartman committed Apr 8, 2017
1 parent 04a218b commit 38ca74e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/vt6656/rf.c
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,8 @@ void vnt_rf_table_download(struct vnt_private *priv)
memcpy(array, addr2, length);

vnt_control_out(priv, MESSAGE_TYPE_WRITE,
value, MESSAGE_REQUEST_RF_CH2, length, array);
value, MESSAGE_REQUEST_RF_CH2,
length, array);

length2 -= length;
value += length;
Expand Down

0 comments on commit 38ca74e

Please sign in to comment.