diff options
author | Stefan Weil <sw@weilnetz.de> | 2013-01-03 15:12:32 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-01-03 15:18:48 +0000 |
commit | 3fcb8cf8dceb45f8b01e1d69d43cfd99df43b78a (patch) | |
tree | eb4699b2651c17f6da8b7575815c2d37f0044b7b /src/drivers/net/sky2.c | |
parent | 717279a294e414218deb1c89d33422b209574053 (diff) | |
download | ipxe-3fcb8cf8dceb45f8b01e1d69d43cfd99df43b78a.tar.gz |
[src] Fix spelling in comments, debug messages and local variable names
Fixes in comments and debug messages:
existance -> existence
unecessary -> unnecessary
occured -> occurred
decriptor -> descriptor
neccessary -> necessary
addres, adress -> address
initilize -> initialize
sucessfully -> successfully
paramter -> parameter
acess -> access
upto -> up to
likelyhood ->likelihood
thru -> through
substracting -> subtracting
lenght -> length
isnt -> isn't
interupt -> interrupt
publically -> publicly (this one was not wrong, but unusual)
recieve -> receive
accessable -> accessible
seperately -> separately
pacet -> packet
controled -> controlled
dectect -> detect
indicies -> indices
extremly -> extremely
boundry -> boundary
usefull -> useful
unuseable -> unusable
auxilliary -> auxiliary
embeded -> embedded
enviroment -> environment
sturcture -> structure
complier -> compiler
constructes -> constructs
supress -> suppress
intruduced -> introduced
compatability -> compatibility
verfication -> verification
ths -> the
reponse -> response
Fixes in local variable names:
retreive -> retrieve
Most of these fixes were made using codespell.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net/sky2.c')
-rw-r--r-- | src/drivers/net/sky2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/sky2.c b/src/drivers/net/sky2.c index eed9b5cb1..35ff66c6d 100644 --- a/src/drivers/net/sky2.c +++ b/src/drivers/net/sky2.c @@ -783,7 +783,7 @@ static void sky2_mac_init(struct sky2_hw *hw, unsigned port) sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR); sky2_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON); - /* On chips without ram buffer, pause is controled by MAC level */ + /* On chips without ram buffer, pause is controlled by MAC level */ if (!(hw->flags & SKY2_HW_RAM_BUFFER)) { sky2_write8(hw, SK_REG(port, RX_GMF_LP_THR), 768/8); sky2_write8(hw, SK_REG(port, RX_GMF_UP_THR), 1024/8); |