We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09546ff commit 6f99b6dCopy full SHA for 6f99b6d
drivers/ethernet/phy/phy_mii.c
@@ -243,7 +243,7 @@ static int update_link_state(const struct device *dev)
243
data->state.speed = LINK_HALF_10BASE_T;
244
}
245
246
- LOG_INF("PHY (%d) Link speed %s Mb, %s duplex\n",
+ LOG_INF("PHY (%d) Link speed %s Mb, %s duplex",
247
cfg->phy_addr,
248
PHY_LINK_IS_SPEED_1000M(data->state.speed) ? "1000" :
249
(PHY_LINK_IS_SPEED_100M(data->state.speed) ? "100" : "10"),
@@ -455,7 +455,7 @@ static int phy_mii_initialize(const struct device *dev)
455
return -EINVAL;
456
457
458
- LOG_INF("PHY (%d) ID %X\n", cfg->phy_addr, phy_id);
+ LOG_INF("PHY (%d) ID %X", cfg->phy_addr, phy_id);
459
460
461
data->gigabit_supported = is_gigabit_supported(dev);
0 commit comments