From 0ba2e0868eb15251abfb51a046b5a66b2eedf9e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20K=C3=B6rner?= Date: Fri, 4 Oct 2024 22:50:49 +0200 Subject: [PATCH] rtl83xx: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Removes an unwanted special character in a debug-message. Signed-off-by: Peter Körner --- target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c b/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c index b17d9ae5d5..5468fc0653 100644 --- a/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c +++ b/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c @@ -374,7 +374,7 @@ static int __init rtl83xx_mdio_probe(struct rtl838x_switch_priv *priv) /* Check for the integrated SerDes of the RTL8380M first */ if (of_property_read_bool(phy_node, "phy-is-integrated") && priv->id == 0x8380 && pn >= 24) { - pr_debug("----> FÓUND A SERDES\n"); + pr_debug("----> FOUND A SERDES\n"); priv->ports[pn].phy = PHY_RTL838X_SDS; continue; } -- 2.30.2