mirror of https://gitee.com/openkylin/linux.git
staging: vt6656: Split arguments to avoid 80-char violation in rf.c
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>
This commit is contained in:
parent
04a218becb
commit
38ca74e58f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue