Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1464687 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2016-08-17 19:40 +0200 |
| Last post | 2016-08-19 08:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] net: ethernet: nuvoton: fix spelling mistake: "aligment" -> "alignment" Colin King <colin.king@canonical.com> - 2016-08-17 19:40 +0200
Re: [PATCH] net: ethernet: nuvoton: fix spelling mistake: "aligment" -> "alignment" David Miller <davem@davemloft.net> - 2016-08-19 08:40 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2016-08-17 19:40 +0200 |
| Subject | [PATCH] net: ethernet: nuvoton: fix spelling mistake: "aligment" -> "alignment" |
| Message-ID | <s7cYO-49X-11@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in dev_err message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/net/ethernet/nuvoton/w90p910_ether.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/nuvoton/w90p910_ether.c b/drivers/net/ethernet/nuvoton/w90p910_ether.c
index 87b7b81..712d8bc 100644
--- a/drivers/net/ethernet/nuvoton/w90p910_ether.c
+++ b/drivers/net/ethernet/nuvoton/w90p910_ether.c
@@ -751,7 +751,7 @@ static void netdev_rx(struct net_device *dev)
dev_err(&pdev->dev, "rx crc err\n");
ether->stats.rx_crc_errors++;
} else if (status & RXDS_ALIE) {
- dev_err(&pdev->dev, "rx aligment err\n");
+ dev_err(&pdev->dev, "rx alignment err\n");
ether->stats.rx_frame_errors++;
} else if (status & RXDS_PTLE) {
dev_err(&pdev->dev, "rx longer err\n");
--
2.9.3
[toc] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-08-19 08:40 +0200 |
| Subject | Re: [PATCH] net: ethernet: nuvoton: fix spelling mistake: "aligment" -> "alignment" |
| Message-ID | <s7LDc-23l-21@gated-at.bofh.it> |
| In reply to | #1464687 |
From: Colin King <colin.king@canonical.com> Date: Wed, 17 Aug 2016 18:31:35 +0100 > From: Colin Ian King <colin.king@canonical.com> > > trivial fix to spelling mistake in dev_err message > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied to net-next.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web