mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
r8169: fix r8168fp_adjust_ocp_cmd function
commitabbf9a0ef8upstream. The (0xBAF70000 & 0x00FFF000) << 6 should be (0xf70 << 18). Fixes:561535b0f2("r8169: fix OCP access on RTL8117") Signed-off-by: Hayes Wang <hayeswang@realtek.com> Acked-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
84ef8a8cb7
commit
cab735320f
@@ -1042,7 +1042,7 @@ static void r8168fp_adjust_ocp_cmd(struct rtl8169_private *tp, u32 *cmd, int typ
|
||||
{
|
||||
/* based on RTL8168FP_OOBMAC_BASE in vendor driver */
|
||||
if (tp->mac_version == RTL_GIGA_MAC_VER_52 && type == ERIAR_OOB)
|
||||
*cmd |= 0x7f0 << 18;
|
||||
*cmd |= 0xf70 << 18;
|
||||
}
|
||||
|
||||
DECLARE_RTL_COND(rtl_eriar_cond)
|
||||
|
||||
Reference in New Issue
Block a user