mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-18 20:49:30 -04:00
staging: rtl8192e: Fix parenthesis alignment
Fix parenthesis alignment in rtl92e_init_gain in order to silence the following checkpatch warning: CHECK: Alignment should match open parenthesis Signed-off-by: Vinicius Peixoto <vpeixoto@lkcamp.dev> Link: https://lore.kernel.org/r/20240822002346.94433-1-vpeixoto@lkcamp.dev Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8a07f476bd
commit
cfb05827ef
@@ -945,19 +945,19 @@ void rtl92e_init_gain(struct net_device *dev, u8 Operation)
|
||||
case IG_Restore:
|
||||
BitMask = 0x7f;
|
||||
rtl92e_set_bb_reg(dev, rOFDM0_XAAGCCore1, BitMask,
|
||||
(u32)priv->initgain_backup.xaagccore1);
|
||||
(u32)priv->initgain_backup.xaagccore1);
|
||||
rtl92e_set_bb_reg(dev, rOFDM0_XBAGCCore1, BitMask,
|
||||
(u32)priv->initgain_backup.xbagccore1);
|
||||
(u32)priv->initgain_backup.xbagccore1);
|
||||
rtl92e_set_bb_reg(dev, rOFDM0_XCAGCCore1, BitMask,
|
||||
(u32)priv->initgain_backup.xcagccore1);
|
||||
(u32)priv->initgain_backup.xcagccore1);
|
||||
rtl92e_set_bb_reg(dev, rOFDM0_XDAGCCore1, BitMask,
|
||||
(u32)priv->initgain_backup.xdagccore1);
|
||||
(u32)priv->initgain_backup.xdagccore1);
|
||||
BitMask = bMaskByte2;
|
||||
rtl92e_set_bb_reg(dev, rCCK0_CCA, BitMask,
|
||||
(u32)priv->initgain_backup.cca);
|
||||
(u32)priv->initgain_backup.cca);
|
||||
|
||||
rtl92e_set_tx_power(dev,
|
||||
priv->rtllib->current_network.channel);
|
||||
priv->rtllib->current_network.channel);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user