Commit df0fa406 authored by Steven Cole's avatar Steven Cole Committed by David Woodhouse

[PATCH] Spelling fixes handel -> handle

This patch provides the following spelling fixes:

handel      -> handle
handeling   -> handling
handeled    -> handled
handeler    -> handler
parent 99639a8c
......@@ -73,7 +73,7 @@ ieee754dp ieee754dp_add(ieee754dp x, ieee754dp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -92,7 +92,7 @@ ieee754dp ieee754dp_add(ieee754dp x, ieee754dp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754dp ieee754dp_div(ieee754dp x, ieee754dp y)
return x;
/* Infinity handeling
/* Infinity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -89,7 +89,7 @@ ieee754dp ieee754dp_div(ieee754dp x, ieee754dp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return ieee754dp_inf(xs ^ ys);
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754dp ieee754dp_mul(ieee754dp x, ieee754dp y)
return x;
/* Infinity handeling */
/* Infinity handling */
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO):
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF):
......
......@@ -72,7 +72,7 @@ ieee754dp ieee754dp_sub(ieee754dp x, ieee754dp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -91,7 +91,7 @@ ieee754dp ieee754dp_sub(ieee754dp x, ieee754dp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -99,7 +99,7 @@ ieee754dp ieee754dp_bestnan(ieee754dp x, ieee754dp y)
}
/* generate a normal/denormal number with over,under handeling
/* generate a normal/denormal number with over,under handling
* sn is sign
* xe is an unbiased exponent
* xm is 3bit extended precision value.
......
......@@ -100,7 +100,7 @@ ieee754sp ieee754sp_bestnan(ieee754sp x, ieee754sp y)
}
/* generate a normal/denormal number with over,under handeling
/* generate a normal/denormal number with over,under handling
* sn is sign
* xe is an unbiased exponent
* xm is 3bit extended precision value.
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_add(ieee754sp x, ieee754sp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -91,7 +91,7 @@ ieee754sp ieee754sp_add(ieee754sp x, ieee754sp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_div(ieee754sp x, ieee754sp y)
return x;
/* Infinity handeling
/* Infinity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -89,7 +89,7 @@ ieee754sp ieee754sp_div(ieee754sp x, ieee754sp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return ieee754sp_inf(xs ^ ys);
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_mul(ieee754sp x, ieee754sp y)
return x;
/* Infinity handeling */
/* Infinity handling */
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO):
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF):
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_sub(ieee754sp x, ieee754sp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -91,7 +91,7 @@ ieee754sp ieee754sp_sub(ieee754sp x, ieee754sp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -73,7 +73,7 @@ ieee754dp ieee754dp_add(ieee754dp x, ieee754dp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -92,7 +92,7 @@ ieee754dp ieee754dp_add(ieee754dp x, ieee754dp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754dp ieee754dp_div(ieee754dp x, ieee754dp y)
return x;
/* Infinity handeling
/* Infinity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -89,7 +89,7 @@ ieee754dp ieee754dp_div(ieee754dp x, ieee754dp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return ieee754dp_inf(xs ^ ys);
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754dp ieee754dp_mul(ieee754dp x, ieee754dp y)
return x;
/* Infinity handeling */
/* Infinity handling */
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO):
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF):
......
......@@ -72,7 +72,7 @@ ieee754dp ieee754dp_sub(ieee754dp x, ieee754dp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -91,7 +91,7 @@ ieee754dp ieee754dp_sub(ieee754dp x, ieee754dp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -99,7 +99,7 @@ ieee754dp ieee754dp_bestnan(ieee754dp x, ieee754dp y)
}
/* generate a normal/denormal number with over,under handeling
/* generate a normal/denormal number with over,under handling
* sn is sign
* xe is an unbiased exponent
* xm is 3bit extended precision value.
......
......@@ -100,7 +100,7 @@ ieee754sp ieee754sp_bestnan(ieee754sp x, ieee754sp y)
}
/* generate a normal/denormal number with over,under handeling
/* generate a normal/denormal number with over,under handling
* sn is sign
* xe is an unbiased exponent
* xm is 3bit extended precision value.
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_add(ieee754sp x, ieee754sp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -91,7 +91,7 @@ ieee754sp ieee754sp_add(ieee754sp x, ieee754sp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_div(ieee754sp x, ieee754sp y)
return x;
/* Infinity handeling
/* Infinity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -89,7 +89,7 @@ ieee754sp ieee754sp_div(ieee754sp x, ieee754sp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return ieee754sp_inf(xs ^ ys);
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_mul(ieee754sp x, ieee754sp y)
return x;
/* Infinity handeling */
/* Infinity handling */
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO):
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF):
......
......@@ -72,7 +72,7 @@ ieee754sp ieee754sp_sub(ieee754sp x, ieee754sp y)
return x;
/* Inifity handeling
/* Inifity handling
*/
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF):
......@@ -91,7 +91,7 @@ ieee754sp ieee754sp_sub(ieee754sp x, ieee754sp y)
case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM):
return x;
/* Zero handeling
/* Zero handling
*/
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO):
......
......@@ -2743,11 +2743,11 @@ static void epcaparam(struct tty_struct *tty, struct channel *ch)
/* ---------------------------------------------------------------
Command sets channels iflag structure on the board. Such things
as input soft flow control, handeling of parity errors, and
break handeling are all set here.
as input soft flow control, handling of parity errors, and
break handling are all set here.
------------------------------------------------------------------- */
/* break handeling, parity handeling, input stripping, flow control chars */
/* break handling, parity handling, input stripping, flow control chars */
fepcmd(ch, SETIFLAGS, (unsigned int) ch->fepiflag, 0, 0, 0);
}
......
......@@ -176,7 +176,7 @@ static inline __s64 zft_check_for_eof(const zft_volinfo *vtbl,
const zft_position *pos);
/* this function decrements the zft_seg_pos counter if we are right
* at the beginning of a segment. This is to handel fsfm/bsfm -- we
* at the beginning of a segment. This is to handle fsfm/bsfm -- we
* need to position before the eof mark. NOTE: zft_tape_pos is not
* changed
*/
......
......@@ -129,7 +129,7 @@ static int tt_setfreq(struct tt_device *dev, unsigned long freq1)
long rest;
unsigned char buffer[25]; /* we have to bit shift 25 registers */
freq = freq1/160; /* convert the freq. to a nice to handel value */
freq = freq1/160; /* convert the freq. to a nice to handle value */
for(i=24;i>-1;i--)
buffer[i]=0;
......
......@@ -3064,7 +3064,7 @@ static int x25_error (sdla_t* card, int err, int cmd, int lcn)
/* Bug Fix: Mar 14 2000
* The Protocol violation error conditions were
* not handeled previously */
* not handled previously */
switch (mb->cmd.pktType & 0x7F){
......
......@@ -674,7 +674,7 @@ static int wanpipe_sendmsg(struct kiocb *iocb, struct socket *sock,
/*============================================================
* wanpipe_delayed_tarnsmit
*
* Transmit bottom half handeler. It dequeues packets
* Transmit bottom half handler. It dequeues packets
* from sk->write_queue and passes them to the
* driver. If the driver is busy, the packet is
* re-enqueued.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment