Skip to content

Commit 2f44521

Browse files
committed
drivers: ethernet: phy_mii: Return -ENOTSUP for fixed-link config
Return -ENOTSUP in phy_mii_cfg_link when a fixed-link configuration is set, indicating that MDIO read/write operations are not supported. Signed-off-by: Ofir Shemesh <ofirshemesh777@gmail.com>
1 parent ef95483 commit 2f44521

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

drivers/ethernet/phy/phy_mii.c

+5
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,15 @@ static int phy_mii_cfg_link(const struct device *dev,
315315
enum phy_link_speed adv_speeds)
316316
{
317317
struct phy_mii_dev_data *const data = dev->data;
318+
const struct phy_mii_dev_config *const cfg = dev->config;
318319
uint16_t anar_reg;
319320
uint16_t bmcr_reg;
320321
uint16_t c1kt_reg;
321322

323+
if (cfg->fixed) {
324+
return -ENOTSUP;
325+
}
326+
322327
if (phy_mii_reg_read(dev, MII_ANAR, &anar_reg) < 0) {
323328
return -EIO;
324329
}

0 commit comments

Comments
 (0)