diff mbox series

[next] net: ethernet: SP7021: Fix spelling mistake "Interrput" -> "Interrupt"

Message ID 20220511104448.150800-1-colin.i.king@gmail.com (mailing list archive)
State Accepted
Commit 982c97eede13f3cb98c471c1b8fc5a12686ef85c
Delegated to: Netdev Maintainers
Headers show
Series [next] net: ethernet: SP7021: Fix spelling mistake "Interrput" -> "Interrupt" | expand

Checks

Context Check Description
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix warning Target tree name not specified in the subject
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers success CCed 6 of 6 maintainers
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
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
netdev/tree_selection success Guessing tree name failed - patch did not apply

Commit Message

Colin Ian King May 11, 2022, 10:44 a.m. UTC
There is a spelling mistake in a dev_dbg message. Fix it.

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

Comments

patchwork-bot+netdevbpf@kernel.org May 12, 2022, 10:40 a.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (master)
by Paolo Abeni <pabeni@redhat.com>:

On Wed, 11 May 2022 11:44:48 +0100 you wrote:
> There is a spelling mistake in a dev_dbg message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/net/ethernet/sunplus/spl2sw_int.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [next] net: ethernet: SP7021: Fix spelling mistake "Interrput" -> "Interrupt"
    https://git.kernel.org/netdev/net-next/c/982c97eede13

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/sunplus/spl2sw_int.c b/drivers/net/ethernet/sunplus/spl2sw_int.c
index 95ce096d1543..69b1e2e0271e 100644
--- a/drivers/net/ethernet/sunplus/spl2sw_int.c
+++ b/drivers/net/ethernet/sunplus/spl2sw_int.c
@@ -215,7 +215,7 @@  irqreturn_t spl2sw_ethernet_interrupt(int irq, void *dev_id)
 
 	status = readl(comm->l2sw_reg_base + L2SW_SW_INT_STATUS_0);
 	if (unlikely(!status)) {
-		dev_dbg(&comm->pdev->dev, "Interrput status is null!\n");
+		dev_dbg(&comm->pdev->dev, "Interrupt status is null!\n");
 		goto spl2sw_ethernet_int_out;
 	}
 	writel(status, comm->l2sw_reg_base + L2SW_SW_INT_STATUS_0);