Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04a218be authored by Dan Cashman's avatar Dan Cashman Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: Replace embedded function name with __func__ in rf.c



Change embedded function name in vnt_rf_set_txpower with %s format with
__func__ argument to make it consistent with other part of if-else and
kernel coding style standards as reported by checkpatch.

Signed-off-by: default avatarDaniel Cashman <dan.a.cashman@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a4dc9bd6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -771,7 +771,7 @@ int vnt_rf_set_txpower(struct vnt_private *priv, u8 power, u32 rate)
			ret &= vnt_rf_write_embedded(priv, 0x015C0800);
		} else {
			dev_dbg(&priv->usb->dev,
				"@@@@ vnt_rf_set_txpower> 11G mode\n");
				"@@@@ %s> 11G mode\n", __func__);

			power_setting = ((0x3f - power) << 20) | (0x7 << 8);