* [PATCH] Spelling fixes.
@ 2013-12-15 12:19 Ville Skyttä
2013-12-16 19:20 ` Randy Dunlap
2014-01-27 1:00 ` Ben Hutchings
0 siblings, 2 replies; 4+ messages in thread
From: Ville Skyttä @ 2013-12-15 12:19 UTC (permalink / raw)
To: bhutchings; +Cc: netdev
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
---
ChangeLog | 4 ++--
NEWS | 2 +-
e1000.c | 2 +-
ethtool.c | 2 +-
natsemi.c | 6 +++---
sfpdiag.c | 4 ++--
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 1fd043e..3efc75b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -95,7 +95,7 @@ Thu Jan 16 2003 Jeb Cramer <jeb.j.cramer@intel.com>
* ethtool.c (do_regs, dump_eeprom): Fix memory leaks on failed
operations. Add error handling of dump_regs(). Modify printout of
- eeprom dump to accomodate larger eeproms.
+ eeprom dump to accommodate larger eeproms.
* e1000.c: Update supported devices. Add error conditions for
unsupported devices.
@@ -190,7 +190,7 @@ Wed May 1 2002 Eli Kupermann <eli.kupermann@intel.com>
Wed May 1 2002 Christoph Hellwig <hch@lst.de>
- * Makefile.am (dist-hook): Use $(top-srcdir) for refering to sources.
+ * Makefile.am (dist-hook): Use $(top-srcdir) for referring to sources.
Mon Apr 29 2002 Christoph Hellwig <hch@lst.de>
diff --git a/NEWS b/NEWS
index ddf43ab..2182880 100644
--- a/NEWS
+++ b/NEWS
@@ -180,7 +180,7 @@ Version 2.6.35 - August 10, 2010
Version 2.6.34 - May 26, 2010
* Feature: Support n-tuple filter programming
- * Feature: Support rx hashing, v2 (targetted for 2.6.35)
+ * Feature: Support rx hashing, v2 (targeted for 2.6.35)
* Feature: Add names of newer Marvell chips
Version 2.6.33 - February 24, 2010
diff --git a/e1000.c b/e1000.c
index dd47774..afeb7f8 100644
--- a/e1000.c
+++ b/e1000.c
@@ -608,7 +608,7 @@ e1000_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs)
reg = regs_buff[17];
fprintf(stdout,
"M88 PHY CONTROL REGISTER: 0x%08X\n"
- " Jabber funtion: %s\n"
+ " Jabber function: %s\n"
" Auto-polarity: %s\n"
" SQE Test: %s\n"
" CLK125: %s\n"
diff --git a/ethtool.c b/ethtool.c
index b06dfa3..315d00f 100644
--- a/ethtool.c
+++ b/ethtool.c
@@ -3326,7 +3326,7 @@ static int do_srxntuple(struct cmd_context *ctx,
err = send_ioctl(ctx, &ntuplecmd);
/*
- * Display error only if reponse is something other than op not
+ * Display error only if response is something other than op not
* supported. It is possible that the interface uses the network
* flow classifier interface instead of N-tuple.
*/
diff --git a/natsemi.c b/natsemi.c
index eaf83e2..ac29be5 100644
--- a/natsemi.c
+++ b/natsemi.c
@@ -437,8 +437,8 @@ natsemi_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs)
data[REG_TXCFG]);
tmp = (data[REG_TXCFG] & BIT_TXCFG_MXDMA)>>20;
fprintf(stdout,
- " Drain Threshhold = %d bytes (%d)\n"
- " Fill Threshhold = %d bytes (%d)\n"
+ " Drain Threshold = %d bytes (%d)\n"
+ " Fill Threshold = %d bytes (%d)\n"
" Max DMA Burst per Tx = %d bytes\n"
" Automatic Tx Padding %s\n"
" Mac Loopback %s\n"
@@ -466,7 +466,7 @@ natsemi_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs)
data[REG_RXCFG]);
tmp = (data[REG_RXCFG] & BIT_RXCFG_MXDMA)>>20;
fprintf(stdout,
- " Drain Threshhold = %d bytes (%d)\n"
+ " Drain Threshold = %d bytes (%d)\n"
" Max DMA Burst per Rx = %d bytes\n"
" Long Packets %s\n"
" Tx Packets %s\n"
diff --git a/sfpdiag.c b/sfpdiag.c
index 04fd880..812a2fa 100644
--- a/sfpdiag.c
+++ b/sfpdiag.c
@@ -103,14 +103,14 @@ struct sff8472_diags {
__u16 tx_power[5]; /* Measured TX Power in 0.1uW units */
__u16 rx_power[5]; /* Measured RX Power */
__u8 rx_power_type; /* 0 = OMA, 1 = Average power */
- __s16 sfp_temp[5]; /* SFP Temp in 16-bit signed 1/256 Celcius */
+ __s16 sfp_temp[5]; /* SFP Temp in 16-bit signed 1/256 Celsius */
__u16 sfp_voltage[5]; /* SFP voltage in 0.1mV units */
};
static struct sff8472_aw_flags {
const char *str; /* Human-readable string, null at the end */
- int offset; /* A2-relative adress offset */
+ int offset; /* A2-relative address offset */
__u8 value; /* Alarm is on if (offset & value) != 0. */
} sff8472_aw_flags[] = {
{ "Laser bias current high alarm", SFF_A2_ALRM_FLG, (1 << 3) },
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Spelling fixes.
2013-12-15 12:19 [PATCH] Spelling fixes Ville Skyttä
@ 2013-12-16 19:20 ` Randy Dunlap
2013-12-16 22:00 ` Jeff Kirsher
2014-01-27 1:00 ` Ben Hutchings
1 sibling, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2013-12-16 19:20 UTC (permalink / raw)
To: Ville Skyttä, bhutchings; +Cc: netdev
On 12/15/13 04:19, Ville Skyttä wrote:
> Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
> ---
> ChangeLog | 4 ++--
> NEWS | 2 +-
> e1000.c | 2 +-
> ethtool.c | 2 +-
> natsemi.c | 6 +++---
> sfpdiag.c | 4 ++--
> 6 files changed, 10 insertions(+), 10 deletions(-)
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
--
~Randy
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Spelling fixes.
2013-12-16 19:20 ` Randy Dunlap
@ 2013-12-16 22:00 ` Jeff Kirsher
0 siblings, 0 replies; 4+ messages in thread
From: Jeff Kirsher @ 2013-12-16 22:00 UTC (permalink / raw)
To: Randy Dunlap; +Cc: Ville Skyttä, Ben Hutchings, netdev
On Mon, Dec 16, 2013 at 11:20 AM, Randy Dunlap <rdunlap@infradead.org> wrote:
> On 12/15/13 04:19, Ville Skyttä wrote:
>> Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
>> ---
>> ChangeLog | 4 ++--
>> NEWS | 2 +-
>> e1000.c | 2 +-
>> ethtool.c | 2 +-
>> natsemi.c | 6 +++---
>> sfpdiag.c | 4 ++--
>> 6 files changed, 10 insertions(+), 10 deletions(-)
>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
>
Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Spelling fixes.
2013-12-15 12:19 [PATCH] Spelling fixes Ville Skyttä
2013-12-16 19:20 ` Randy Dunlap
@ 2014-01-27 1:00 ` Ben Hutchings
1 sibling, 0 replies; 4+ messages in thread
From: Ben Hutchings @ 2014-01-27 1:00 UTC (permalink / raw)
To: Ville Skyttä; +Cc: netdev
[-- Attachment #1: Type: text/plain, Size: 366 bytes --]
On Sun, 2013-12-15 at 14:19 +0200, Ville Skyttä wrote:
> Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
> ---
> ChangeLog | 4 ++--
> NEWS | 2 +-
[...]
I don't believe in retroactive changes so I didn't change these files,
but I applied the rest, thanks.
Ben.
--
Ben Hutchings
If at first you don't succeed, you're doing about average.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-01-27 1:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-15 12:19 [PATCH] Spelling fixes Ville Skyttä
2013-12-16 19:20 ` Randy Dunlap
2013-12-16 22:00 ` Jeff Kirsher
2014-01-27 1:00 ` Ben Hutchings
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).