Re: [PATCH net-next] r8169: remove not needed call to rtl_wol_enable_rx from rtl_shutdown

2021-01-27 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Mon, 25 Jan 2021 17:55:12 +0100 you wrote: > rtl_wol_enable_rx() is called via the following call chain if WoL > is enabled: > rtl8169_down() > -> rtl_prepare_power_down() >-> rtl_wol_enable_rx() > Therefore we don't

[PATCH net-next] r8169: remove not needed call to rtl_wol_enable_rx from rtl_shutdown

2021-01-25 Thread Heiner Kallweit
rtl_wol_enable_rx() is called via the following call chain if WoL is enabled: rtl8169_down() -> rtl_prepare_power_down() -> rtl_wol_enable_rx() Therefore we don't have to call this function here. Signed-off-by: Heiner Kallweit --- drivers/net/ethernet/realtek/r8169_main.c | 4 +--- 1 file cha