diff options
| author | 2022-05-11 11:44:48 +0100 | |
|---|---|---|
| committer | 2022-05-12 12:15:15 +0200 | |
| commit | 982c97eede13f3cb98c471c1b8fc5a12686ef85c (patch) | |
| tree | d61f98f566deb364f5262688b873482281d54aec | |
| parent | net: enetc: kill PHY-less mode for PFs (diff) | |
| download | wireguard-linux-982c97eede13f3cb98c471c1b8fc5a12686ef85c.tar.xz wireguard-linux-982c97eede13f3cb98c471c1b8fc5a12686ef85c.zip | |
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>
| -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); |
