Commit 95897fdf authored by Pritthijit Nath's avatar Pritthijit Nath Committed by Greg Kroah-Hartman

staging: vt6656: Fixed issue with alignment in rf.c

This change fixes a checkpatch CHECK style issue for "Alignment should
match open parenthesis".
Signed-off-by: default avatarPritthijit Nath <pritthijit.nath@icloud.com>
Link: https://lore.kernel.org/r/20210211213715.7386-1-pritthijit.nath@icloud.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6522ad26
...@@ -687,7 +687,7 @@ static int vnt_rf_set_txpower(struct vnt_private *priv, u8 power, ...@@ -687,7 +687,7 @@ static int vnt_rf_set_txpower(struct vnt_private *priv, u8 power,
if (hw_value < ARRAY_SIZE(vt3226d0_lo_current_table)) { if (hw_value < ARRAY_SIZE(vt3226d0_lo_current_table)) {
ret = vnt_rf_write_embedded(priv, ret = vnt_rf_write_embedded(priv,
vt3226d0_lo_current_table[hw_value]); vt3226d0_lo_current_table[hw_value]);
if (ret) if (ret)
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment