diff mbox series

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

Message ID 20250113091555.23594-1-colin.i.king@gmail.com (mailing list archive)
State New
Delegated to: Netdev Maintainers
Headers show
Series [next] net: phy: dp83822: Fix typo "outout" -> "output" | expand

Checks

Context Check Description
netdev/series_format warning Single patches do not need cover letters; Target tree name not specified in the subject
netdev/tree_selection success Guessed tree name to be net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 1 this patch: 1
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 7 of 7 maintainers
netdev/build_clang success Errors and warnings before: 2 this patch: 2
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 1 this patch: 1
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/contest success net-next-2025-01-13--15-00 (tests: 881)

Commit Message

Colin Ian King Jan. 13, 2025, 9:15 a.m. UTC
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(-)

Comments

Andrew Lunn Jan. 13, 2025, 1:48 p.m. UTC | #1
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
diff mbox series

Patch

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;
 	}