From: Jesper Nilsson Date: Fri, 2 Dec 2016 14:57:49 +0000 (+0100) Subject: net: phy: dp83848: Support ethernet pause frames X-Git-Tag: Ubuntu-5.13.0-19.19~14534^2~88 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=c7a61319ad35ef74630662010231dbbcc1ade1b0;p=mirror_ubuntu-jammy-kernel.git net: phy: dp83848: Support ethernet pause frames According to the documentation, the PHYs supported by this driver can also support pause frames. Announce this to be so. Tested with a TI83822I. Acked-by: Andrew F. Davis Signed-off-by: Jesper Nilsson Signed-off-by: David S. Miller --- diff --git a/drivers/net/phy/dp83848.c b/drivers/net/phy/dp83848.c index 800b39f06279..320d0dc33b3d 100644 --- a/drivers/net/phy/dp83848.c +++ b/drivers/net/phy/dp83848.c @@ -88,7 +88,9 @@ MODULE_DEVICE_TABLE(mdio, dp83848_tbl); .phy_id = _id, \ .phy_id_mask = 0xfffffff0, \ .name = _name, \ - .features = PHY_BASIC_FEATURES, \ + .features = (PHY_BASIC_FEATURES | \ + SUPPORTED_Pause | \ + SUPPORTED_Asym_Pause), \ .flags = PHY_HAS_INTERRUPT, \ \ .soft_reset = genphy_soft_reset, \