[PATCH][next] net: phy: dp83822: Fix typo "outout" -> "output"

Colin Ian King posted 1 patch 11 months, 1 week ago
drivers/net/phy/dp83822.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] net: phy: dp83822: Fix typo "outout" -> "output"
Posted by Colin Ian King 11 months, 1 week ago
There is a typo in a phydev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/net/phy/dp83822.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/phy/dp83822.c b/drivers/net/phy/dp83822.c
index 4262bc31503b..f89e742281d1 100644
--- a/drivers/net/phy/dp83822.c
+++ b/drivers/net/phy/dp83822.c
@@ -762,7 +762,7 @@ static int dp83822_of_init_leds(struct phy_device *phydev)
 
 	if (dp83822->led_pin_enable[DP83822_LED_INDEX_COL_GPIO2] &&
 	    dp83822->set_gpio2_clk_out) {
-		phydev_err(phydev, "COL(GPIO2) cannot be used as LED outout, already used as clock output\n");
+		phydev_err(phydev, "COL(GPIO2) cannot be used as LED output, already used as clock output\n");
 		return -EINVAL;
 	}
 
-- 
2.47.1
Re: [PATCH][next] net: phy: dp83822: Fix typo "outout" -> "output"
Posted by Andrew Lunn 11 months, 1 week ago
On Mon, Jan 13, 2025 at 09:15:55AM +0000, Colin Ian King wrote:
> There is a typo in a phydev_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew