staging: vt6656: convert spaces to tabs for rf.c
Address checkpatch errors encountered in rf.c by removing use of spaces and replacing with properly aligned tabs. 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
b0512faf60
commit
a4dc9bd6a3
|
@ -876,7 +876,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
|
||||||
memcpy(array, addr1, length1);
|
memcpy(array, addr1, length1);
|
||||||
|
|
||||||
vnt_control_out(priv, MESSAGE_TYPE_WRITE, 0,
|
vnt_control_out(priv, MESSAGE_TYPE_WRITE, 0,
|
||||||
MESSAGE_REQUEST_RF_INIT, length1, array);
|
MESSAGE_REQUEST_RF_INIT, length1, array);
|
||||||
|
|
||||||
/* Channel Table 0 */
|
/* Channel Table 0 */
|
||||||
value = 0;
|
value = 0;
|
||||||
|
@ -889,7 +889,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
|
||||||
memcpy(array, addr2, length);
|
memcpy(array, addr2, length);
|
||||||
|
|
||||||
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
||||||
value, MESSAGE_REQUEST_RF_CH0, length, array);
|
value, MESSAGE_REQUEST_RF_CH0, length, array);
|
||||||
|
|
||||||
length2 -= length;
|
length2 -= length;
|
||||||
value += length;
|
value += length;
|
||||||
|
@ -907,7 +907,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
|
||||||
memcpy(array, addr3, length);
|
memcpy(array, addr3, length);
|
||||||
|
|
||||||
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
||||||
value, MESSAGE_REQUEST_RF_CH1, length, array);
|
value, MESSAGE_REQUEST_RF_CH1, length, array);
|
||||||
|
|
||||||
length3 -= length;
|
length3 -= length;
|
||||||
value += length;
|
value += length;
|
||||||
|
@ -924,7 +924,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
|
||||||
|
|
||||||
/* Init Table 2 */
|
/* Init Table 2 */
|
||||||
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
||||||
0, MESSAGE_REQUEST_RF_INIT2, length1, array);
|
0, MESSAGE_REQUEST_RF_INIT2, length1, array);
|
||||||
|
|
||||||
/* Channel Table 0 */
|
/* Channel Table 0 */
|
||||||
value = 0;
|
value = 0;
|
||||||
|
@ -937,7 +937,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
|
||||||
memcpy(array, addr2, length);
|
memcpy(array, addr2, length);
|
||||||
|
|
||||||
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
vnt_control_out(priv, MESSAGE_TYPE_WRITE,
|
||||||
value, MESSAGE_REQUEST_RF_CH2, length, array);
|
value, MESSAGE_REQUEST_RF_CH2, length, array);
|
||||||
|
|
||||||
length2 -= length;
|
length2 -= length;
|
||||||
value += length;
|
value += length;
|
||||||
|
|
Loading…
Reference in New Issue