Adjust the order of rtl8153_runtime_enable() according to the
suggestion from the engineer.

Signed-off-by: Hayes Wang <hayesw...@realtek.com>
---
 drivers/net/usb/r8152.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
index e569c48..32e83fd 100644
--- a/drivers/net/usb/r8152.c
+++ b/drivers/net/usb/r8152.c
@@ -2551,13 +2551,13 @@ static void rtl_runtime_suspend_enable(struct r8152 
*tp, bool enable)
 
 static void rtl8153_runtime_enable(struct r8152 *tp, bool enable)
 {
-       rtl_runtime_suspend_enable(tp, enable);
-
        if (enable) {
                r8153_u1u2en(tp, false);
                r8153_u2p3en(tp, false);
                r8153_mac_clk_spd(tp, true);
+               rtl_runtime_suspend_enable(tp, true);
        } else {
+               rtl_runtime_suspend_enable(tp, false);
                r8153_mac_clk_spd(tp, false);
                r8153_u2p3en(tp, true);
                r8153_u1u2en(tp, true);
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to