diff mbox series

[next] net: phy: micrel: Fix spelling mistake "minimim" -> "minimum"

Message ID 20230314082315.26532-1-colin.i.king@gmail.com (mailing list archive)
State Accepted
Commit 9bdf4489a3950335af088604876fdc3209a9dd8e
Delegated to: Netdev Maintainers
Headers show
Series [next] net: phy: micrel: Fix spelling mistake "minimim" -> "minimum" | 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/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: 18 this patch: 18
netdev/cc_maintainers success CCed 8 of 8 maintainers
netdev/build_clang success Errors and warnings before: 18 this patch: 18
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: 18 this patch: 18
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Colin Ian King March 14, 2023, 8:23 a.m. UTC
There is a spelling mistake in a pr_warn_ratelimited message. Fix it.

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

Comments

patchwork-bot+netdevbpf@kernel.org March 16, 2023, 5:30 a.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Tue, 14 Mar 2023 08:23:15 +0000 you wrote:
> There is a spelling mistake in a pr_warn_ratelimited message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/net/phy/micrel.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [next] net: phy: micrel: Fix spelling mistake "minimim" -> "minimum"
    https://git.kernel.org/netdev/net-next/c/9bdf4489a395

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index e5b2af69ac03..e3d3959cf2be 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -4108,7 +4108,7 @@  static int lan8841_ptp_perout(struct ptp_clock_info *ptp,
 	period_nsec = timespec64_to_ns(&ts_period);
 
 	if (period_nsec < 200) {
-		pr_warn_ratelimited("%s: perout period too small, minimim is 200 nsec\n",
+		pr_warn_ratelimited("%s: perout period too small, minimum is 200 nsec\n",
 				    phydev_name(phydev));
 		return -EOPNOTSUPP;
 	}