Commit d6759172 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

net: dsa: lantiq: fix spelling mistake "brigde" -> "bridge"

There are several spelling mistakes in dev_err messages. Fix these.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f319ca65
...@@ -1235,7 +1235,7 @@ static void gswip_port_fast_age(struct dsa_switch *ds, int port) ...@@ -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); err = gswip_pce_table_entry_read(priv, &mac_bridge);
if (err) { 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); err);
return; return;
} }
...@@ -1252,7 +1252,7 @@ static void gswip_port_fast_age(struct dsa_switch *ds, int port) ...@@ -1252,7 +1252,7 @@ static void gswip_port_fast_age(struct dsa_switch *ds, int port)
mac_bridge.valid = false; mac_bridge.valid = false;
err = gswip_pce_table_entry_write(priv, &mac_bridge); err = gswip_pce_table_entry_write(priv, &mac_bridge);
if (err) { 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); err);
return; return;
} }
...@@ -1328,7 +1328,7 @@ static int gswip_port_fdb(struct dsa_switch *ds, int port, ...@@ -1328,7 +1328,7 @@ static int gswip_port_fdb(struct dsa_switch *ds, int port,
err = gswip_pce_table_entry_write(priv, &mac_bridge); err = gswip_pce_table_entry_write(priv, &mac_bridge);
if (err) 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; return err;
} }
...@@ -1360,7 +1360,7 @@ static int gswip_port_fdb_dump(struct dsa_switch *ds, int port, ...@@ -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); err = gswip_pce_table_entry_read(priv, &mac_bridge);
if (err) { 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); err);
return err; return err;
} }
......
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