mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-13 06:10:18 -04:00
rtl8xxxu: Use proper register name for REG_PAD_CTRL1
Fixup another case where the hard coded register value was used instead of the name. Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
@@ -3550,9 +3550,9 @@ static void rtl8723bu_phy_init_antenna_selection(struct rtl8xxxu_priv *priv)
|
||||
{
|
||||
u32 val32;
|
||||
|
||||
val32 = rtl8xxxu_read32(priv, 0x64);
|
||||
val32 = rtl8xxxu_read32(priv, REG_PAD_CTRL1);
|
||||
val32 &= ~(BIT(20) | BIT(24));
|
||||
rtl8xxxu_write32(priv, 0x64, val32);
|
||||
rtl8xxxu_write32(priv, REG_PAD_CTRL1, val32);
|
||||
|
||||
val32 = rtl8xxxu_read32(priv, REG_GPIO_MUXCFG);
|
||||
val32 &= ~BIT(4);
|
||||
|
||||
Reference in New Issue
Block a user