Skip to content

Commit

Permalink
net: dsa: lantiq: fix spelling mistake "brigde" -> "bridge"
Browse files Browse the repository at this point in the history
There are several spelling mistakes in dev_err messages. Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Colin Ian King authored and David S. Miller committed May 8, 2019
1 parent f319ca6 commit d675917
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/net/dsa/lantiq_gswip.c
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ static void gswip_port_fast_age(struct dsa_switch *ds, int port)

err = gswip_pce_table_entry_read(priv, &mac_bridge);
if (err) {
dev_err(priv->dev, "failed to read mac brigde: %d\n",
dev_err(priv->dev, "failed to read mac bridge: %d\n",
err);
return;
}
Expand All @@ -1252,7 +1252,7 @@ static void gswip_port_fast_age(struct dsa_switch *ds, int port)
mac_bridge.valid = false;
err = gswip_pce_table_entry_write(priv, &mac_bridge);
if (err) {
dev_err(priv->dev, "failed to write mac brigde: %d\n",
dev_err(priv->dev, "failed to write mac bridge: %d\n",
err);
return;
}
Expand Down Expand Up @@ -1328,7 +1328,7 @@ static int gswip_port_fdb(struct dsa_switch *ds, int port,

err = gswip_pce_table_entry_write(priv, &mac_bridge);
if (err)
dev_err(priv->dev, "failed to write mac brigde: %d\n", err);
dev_err(priv->dev, "failed to write mac bridge: %d\n", err);

return err;
}
Expand Down Expand Up @@ -1360,7 +1360,7 @@ static int gswip_port_fdb_dump(struct dsa_switch *ds, int port,

err = gswip_pce_table_entry_read(priv, &mac_bridge);
if (err) {
dev_err(priv->dev, "failed to write mac brigde: %d\n",
dev_err(priv->dev, "failed to write mac bridge: %d\n",
err);
return err;
}
Expand Down

0 comments on commit d675917

Please sign in to comment.