Message ID | 1394712342-15778-362-Taiwan-albertk@realtek.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 809a7fc6593f288d6f820ef6cc57b9d69b5f9474 |
Headers | show |
Series | r8152: serial fixes | expand |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 24 Apr 2021 14:09:03 +0800 you wrote: > Remove DELL_TB_RX_AGG_BUG and LENOVO_MACPASSTHRU flags of rtl8152_flags. > They are only set when initializing and wouldn't be change. It is enough > to record them with variables. > > Signed-off-by: Hayes Wang <hayeswang@realtek.com> > --- > drivers/net/usb/r8152.c | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) Here is the summary with links: - [net-next] r8152: remove some bit operations https://git.kernel.org/netdev/net-next/c/9c68011bd7e4 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c index c3217a5c2fe1..bc6b2f8aaa7e 100644 --- a/drivers/net/usb/r8152.c +++ b/drivers/net/usb/r8152.c @@ -3389,7 +3389,6 @@ static void rtl8153b_runtime_enable(struct r8152 *tp, bool enable) r8153b_ups_en(tp, false); r8153_queue_wake(tp, false); rtl_runtime_suspend_enable(tp, false); - r8153_u2p3en(tp, true); r8153b_u1u2en(tp, true); } } @@ -4688,7 +4687,6 @@ static void r8153b_hw_phy_cfg(struct r8152 *tp) r8153_aldps_en(tp, true); r8152b_enable_fc(tp); - r8153_u2p3en(tp, true); set_bit(PHY_RESET, &tp->flags); } @@ -5018,7 +5016,6 @@ static void rtl8153b_up(struct r8152 *tp) ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_B); r8153_aldps_en(tp, true); - r8153_u2p3en(tp, true); r8153b_u1u2en(tp, true); }
Enable U2P3 may miss zero packet for bulk-in. Signed-off-by: Hayes Wang <hayeswang@realtek.com> --- drivers/net/usb/r8152.c | 3 --- 1 file changed, 3 deletions(-)