Commit dd6d364e authored by Martin Schiller's avatar Martin Schiller Committed by Jakub Kicinski

net: dsa: lantiq_gswip: add terminating \n where missing

Some dev_err are missing the terminating \n. Let's add that.
Suggested-by: default avatarVladimir Oltean <olteanv@gmail.com>
Signed-off-by: default avatarMartin Schiller <ms@dev.tdt.de>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reviewed-by: default avatarVladimir Oltean <olteanv@gmail.com>
Link: https://lore.kernel.org/r/20240611135434.3180973-4-ms@dev.tdt.deSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent b98f122e
...@@ -836,7 +836,7 @@ static int gswip_setup(struct dsa_switch *ds) ...@@ -836,7 +836,7 @@ static int gswip_setup(struct dsa_switch *ds)
err = gswip_pce_load_microcode(priv); err = gswip_pce_load_microcode(priv);
if (err) { if (err) {
dev_err(priv->dev, "writing PCE microcode failed, %i", err); dev_err(priv->dev, "writing PCE microcode failed, %i\n", err);
return err; return err;
} }
...@@ -1792,7 +1792,7 @@ static u32 gswip_bcm_ram_entry_read(struct gswip_priv *priv, u32 table, ...@@ -1792,7 +1792,7 @@ static u32 gswip_bcm_ram_entry_read(struct gswip_priv *priv, u32 table,
err = gswip_switch_r_timeout(priv, GSWIP_BM_RAM_CTRL, err = gswip_switch_r_timeout(priv, GSWIP_BM_RAM_CTRL,
GSWIP_BM_RAM_CTRL_BAS); GSWIP_BM_RAM_CTRL_BAS);
if (err) { if (err) {
dev_err(priv->dev, "timeout while reading table: %u, index: %u", dev_err(priv->dev, "timeout while reading table: %u, index: %u\n",
table, index); table, index);
return 0; return 0;
} }
...@@ -2021,7 +2021,7 @@ static void gswip_gphy_fw_remove(struct gswip_priv *priv, ...@@ -2021,7 +2021,7 @@ static void gswip_gphy_fw_remove(struct gswip_priv *priv,
ret = regmap_write(priv->rcu_regmap, gphy_fw->fw_addr_offset, 0); ret = regmap_write(priv->rcu_regmap, gphy_fw->fw_addr_offset, 0);
if (ret) if (ret)
dev_err(priv->dev, "can not reset GPHY FW pointer"); dev_err(priv->dev, "can not reset GPHY FW pointer\n");
clk_disable_unprepare(gphy_fw->clk_gate); clk_disable_unprepare(gphy_fw->clk_gate);
...@@ -2050,7 +2050,7 @@ static int gswip_gphy_fw_list(struct gswip_priv *priv, ...@@ -2050,7 +2050,7 @@ static int gswip_gphy_fw_list(struct gswip_priv *priv,
priv->gphy_fw_name_cfg = &xrx200a2x_gphy_data; priv->gphy_fw_name_cfg = &xrx200a2x_gphy_data;
break; break;
default: default:
dev_err(dev, "unknown GSWIP version: 0x%x", version); dev_err(dev, "unknown GSWIP version: 0x%x\n", version);
return -ENOENT; return -ENOENT;
} }
} }
...@@ -2060,7 +2060,7 @@ static int gswip_gphy_fw_list(struct gswip_priv *priv, ...@@ -2060,7 +2060,7 @@ static int gswip_gphy_fw_list(struct gswip_priv *priv,
priv->gphy_fw_name_cfg = match->data; priv->gphy_fw_name_cfg = match->data;
if (!priv->gphy_fw_name_cfg) { if (!priv->gphy_fw_name_cfg) {
dev_err(dev, "GPHY compatible type not supported"); dev_err(dev, "GPHY compatible type not supported\n");
return -ENOENT; return -ENOENT;
} }
...@@ -2163,7 +2163,7 @@ static int gswip_probe(struct platform_device *pdev) ...@@ -2163,7 +2163,7 @@ static int gswip_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
break; break;
default: default:
dev_err(dev, "unknown GSWIP version: 0x%x", version); dev_err(dev, "unknown GSWIP version: 0x%x\n", version);
return -ENOENT; return -ENOENT;
} }
...@@ -2191,7 +2191,7 @@ static int gswip_probe(struct platform_device *pdev) ...@@ -2191,7 +2191,7 @@ static int gswip_probe(struct platform_device *pdev)
goto gphy_fw_remove; goto gphy_fw_remove;
} }
if (!dsa_is_cpu_port(priv->ds, priv->hw_info->cpu_port)) { if (!dsa_is_cpu_port(priv->ds, priv->hw_info->cpu_port)) {
dev_err(dev, "wrong CPU port defined, HW only supports port: %i", dev_err(dev, "wrong CPU port defined, HW only supports port: %i\n",
priv->hw_info->cpu_port); priv->hw_info->cpu_port);
err = -EINVAL; err = -EINVAL;
goto disable_switch; goto disable_switch;
......
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