Skip to content

Commit 95897fd

Browse files
p3jitnathgregkh
authored andcommitted
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: Pritthijit Nath <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 6522ad2 commit 95897fd

File tree

1 file changed

+1
-1
lines changed
  • drivers/staging/vt6656

1 file changed

+1
-1
lines changed

drivers/staging/vt6656/rf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ static int vnt_rf_set_txpower(struct vnt_private *priv, u8 power,
687687

688688
if (hw_value < ARRAY_SIZE(vt3226d0_lo_current_table)) {
689689
ret = vnt_rf_write_embedded(priv,
690-
vt3226d0_lo_current_table[hw_value]);
690+
vt3226d0_lo_current_table[hw_value]);
691691
if (ret)
692692
return ret;
693693
}

0 commit comments

Comments
 (0)