Commit fd3984e6 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller

net: stmmac: Fix wrong message in stmmac_probe_config_dt

Most likely a copy & paste error in referenced commit.
Restore the debug message to what it was before.

Fixes: f573c0b9 ("stmmac: move stmmac_clk, pclk, clk_ptp_ref and stmmac_rst to platform structure")
Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Acked-By: default avatarJoao Pinto <jpinto@synopsys.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 722eef28
...@@ -371,7 +371,7 @@ stmmac_probe_config_dt(struct platform_device *pdev, const char **mac) ...@@ -371,7 +371,7 @@ stmmac_probe_config_dt(struct platform_device *pdev, const char **mac)
} else { } else {
clk_prepare_enable(plat->clk_ptp_ref); clk_prepare_enable(plat->clk_ptp_ref);
plat->clk_ptp_rate = clk_get_rate(plat->clk_ptp_ref); plat->clk_ptp_rate = clk_get_rate(plat->clk_ptp_ref);
dev_info(&pdev->dev, "No reset control found\n"); dev_dbg(&pdev->dev, "PTP rate %d\n", plat->clk_ptp_rate);
} }
plat->stmmac_rst = devm_reset_control_get(&pdev->dev, plat->stmmac_rst = devm_reset_control_get(&pdev->dev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment