diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2022-05-11 11:44:48 +0100 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2022-05-12 12:15:15 +0200 |
commit | 982c97eede13f3cb98c471c1b8fc5a12686ef85c (patch) | |
tree | d61f98f566deb364f5262688b873482281d54aec /drivers/net/ethernet/sunplus | |
parent | 0f84d403b8e52c9c9bca52ac4f767c8f955e784d (diff) |
net: ethernet: SP7021: Fix spelling mistake "Interrput" -> "Interrupt"
There is a spelling mistake in a dev_dbg message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20220511104448.150800-1-colin.i.king@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'drivers/net/ethernet/sunplus')
-rw-r--r-- | drivers/net/ethernet/sunplus/spl2sw_int.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |