Skip to content

Commit

Permalink
r8152: move the setting for the default speed
Browse files Browse the repository at this point in the history
Move calling set_speed() from open() to rtl_hw_phy_work_func_t().
Then, we would set the default speed only for first initialization
or after resuming.

Besides, the set_speed() could handle the flag of PHY_RESET which
would be set in rtl_ops.hw_phy_cfg().

Signed-off-by: Hayes Wang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
hayesorz authored and davem330 committed Jun 15, 2016
1 parent a028a9e commit 9d21c0d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions drivers/net/usb/r8152.c
Original file line number Diff line number Diff line change
Expand Up @@ -3051,6 +3051,10 @@ static void rtl_hw_phy_work_func_t(struct work_struct *work)

tp->rtl_ops.hw_phy_cfg(tp);

rtl8152_set_speed(tp, AUTONEG_ENABLE,
tp->mii.supports_gmii ? SPEED_1000 : SPEED_100,
DUPLEX_FULL);

mutex_unlock(&tp->control);

usb_autopm_put_interface(tp->intf);
Expand Down Expand Up @@ -3104,9 +3108,6 @@ static int rtl8152_open(struct net_device *netdev)

tp->rtl_ops.up(tp);

rtl8152_set_speed(tp, AUTONEG_ENABLE,
tp->mii.supports_gmii ? SPEED_1000 : SPEED_100,
DUPLEX_FULL);
netif_carrier_off(netdev);
netif_start_queue(netdev);
set_bit(WORK_ENABLE, &tp->flags);
Expand Down Expand Up @@ -3549,10 +3550,6 @@ static int rtl8152_resume(struct usb_interface *intf)
napi_enable(&tp->napi);
} else {
tp->rtl_ops.up(tp);
rtl8152_set_speed(tp, AUTONEG_ENABLE,
tp->mii.supports_gmii ?
SPEED_1000 : SPEED_100,
DUPLEX_FULL);
netif_carrier_off(tp->netdev);
set_bit(WORK_ENABLE, &tp->flags);
}
Expand Down

0 comments on commit 9d21c0d

Please sign in to comment.