diff options
| author | Oleksij Rempel <[email protected]> | 2023-11-27 14:51:01 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2023-11-29 16:38:34 +0000 |
| commit | 71cd5ce7e2f390de105b118a330ffe40a3417bdc (patch) | |
| tree | 0b7699cf9892aff504141bd48f4fcd28314f493c /drivers/net/dsa | |
| parent | net: dsa: microchip: ksz8: Add function to configure ports with integrated PHYs (diff) | |
| download | kernel-71cd5ce7e2f390de105b118a330ffe40a3417bdc.tar.gz kernel-71cd5ce7e2f390de105b118a330ffe40a3417bdc.zip | |
net: dsa: microchip: make phylink_mac_link_up() not optional
Last part of the driver do now support phylink_mac_link_up(). So, make it
not optional.
Signed-off-by: Oleksij Rempel <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Reviewed-by: Russell King (Oracle) <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'drivers/net/dsa')
| -rw-r--r-- | drivers/net/dsa/microchip/ksz_common.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/dsa/microchip/ksz_common.c b/drivers/net/dsa/microchip/ksz_common.c index 3b1fe9aff6a8..9545aed905f5 100644 --- a/drivers/net/dsa/microchip/ksz_common.c +++ b/drivers/net/dsa/microchip/ksz_common.c @@ -3113,10 +3113,8 @@ static void ksz_phylink_mac_link_up(struct dsa_switch *ds, int port, { struct ksz_device *dev = ds->priv; - if (dev->dev_ops->phylink_mac_link_up) - dev->dev_ops->phylink_mac_link_up(dev, port, mode, interface, - phydev, speed, duplex, - tx_pause, rx_pause); + dev->dev_ops->phylink_mac_link_up(dev, port, mode, interface, phydev, + speed, duplex, tx_pause, rx_pause); } static int ksz_switch_detect(struct ksz_device *dev) |
