Commit cc53ded2 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

[IRDA]: Spelling fixes

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5e8e034c
...@@ -496,7 +496,7 @@ static int ircomm_param_poll(void *instance, irda_param_t *param, int get) ...@@ -496,7 +496,7 @@ static int ircomm_param_poll(void *instance, irda_param_t *param, int get)
IRDA_ASSERT(self != NULL, return -1;); IRDA_ASSERT(self != NULL, return -1;);
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
/* Poll parameters are always of lenght 0 (just a signal) */ /* Poll parameters are always of length 0 (just a signal) */
if (!get) { if (!get) {
/* Respond with DTE line settings */ /* Respond with DTE line settings */
ircomm_param_request(self, IRCOMM_DTE, TRUE); ircomm_param_request(self, IRCOMM_DTE, TRUE);
......
...@@ -342,7 +342,7 @@ static void irlan_eth_set_multicast_list(struct net_device *dev) ...@@ -342,7 +342,7 @@ static void irlan_eth_set_multicast_list(struct net_device *dev)
if (dev->flags & IFF_PROMISC) { if (dev->flags & IFF_PROMISC) {
/* Enable promiscuous mode */ /* Enable promiscuous mode */
IRDA_WARNING("Promiscous mode not implemented by IrLAN!\n"); IRDA_WARNING("Promiscuous mode not implemented by IrLAN!\n");
} }
else if ((dev->flags & IFF_ALLMULTI) || dev->mc_count > HW_MAX_ADDRS) { else if ((dev->flags & IFF_ALLMULTI) || dev->mc_count > HW_MAX_ADDRS) {
/* Disable promiscuous mode, use normal mode. */ /* Disable promiscuous mode, use normal mode. */
......
...@@ -144,7 +144,7 @@ void irlap_send_snrm_frame(struct irlap_cb *self, struct qos_info *qos) ...@@ -144,7 +144,7 @@ void irlap_send_snrm_frame(struct irlap_cb *self, struct qos_info *qos)
frame->control = SNRM_CMD | PF_BIT; frame->control = SNRM_CMD | PF_BIT;
/* /*
* If we are establishing a connection then insert QoS paramerters * If we are establishing a connection then insert QoS parameters
*/ */
if (qos) { if (qos) {
skb_put(tx_skb, 9); /* 25 left */ skb_put(tx_skb, 9); /* 25 left */
......
...@@ -133,7 +133,7 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi, ...@@ -133,7 +133,7 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi,
int err; int err;
p.pi = pi; /* In case handler needs to know */ p.pi = pi; /* In case handler needs to know */
p.pl = type & PV_MASK; /* The integer type codes the lenght as well */ p.pl = type & PV_MASK; /* The integer type codes the length as well */
p.pv.i = 0; /* Clear value */ p.pv.i = 0; /* Clear value */
/* Call handler for this parameter */ /* Call handler for this parameter */
...@@ -142,7 +142,7 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi, ...@@ -142,7 +142,7 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi,
return err; return err;
/* /*
* If parameter lenght is still 0, then (1) this is an any length * If parameter length is still 0, then (1) this is an any length
* integer, and (2) the handler function does not care which length * integer, and (2) the handler function does not care which length
* we choose to use, so we pick the one the gives the fewest bytes. * we choose to use, so we pick the one the gives the fewest bytes.
*/ */
...@@ -206,11 +206,11 @@ static int irda_extract_integer(void *self, __u8 *buf, int len, __u8 pi, ...@@ -206,11 +206,11 @@ static int irda_extract_integer(void *self, __u8 *buf, int len, __u8 pi,
{ {
irda_param_t p; irda_param_t p;
int n = 0; int n = 0;
int extract_len; /* Real lenght we extract */ int extract_len; /* Real length we extract */
int err; int err;
p.pi = pi; /* In case handler needs to know */ p.pi = pi; /* In case handler needs to know */
p.pl = buf[1]; /* Extract lenght of value */ p.pl = buf[1]; /* Extract length of value */
p.pv.i = 0; /* Clear value */ p.pv.i = 0; /* Clear value */
extract_len = p.pl; /* Default : extract all */ extract_len = p.pl; /* Default : extract all */
...@@ -297,7 +297,7 @@ static int irda_extract_string(void *self, __u8 *buf, int len, __u8 pi, ...@@ -297,7 +297,7 @@ static int irda_extract_string(void *self, __u8 *buf, int len, __u8 pi,
IRDA_DEBUG(2, "%s()\n", __FUNCTION__); IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
p.pi = pi; /* In case handler needs to know */ p.pi = pi; /* In case handler needs to know */
p.pl = buf[1]; /* Extract lenght of value */ p.pl = buf[1]; /* Extract length of value */
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d\n", __FUNCTION__, IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d\n", __FUNCTION__,
p.pi, p.pl); p.pi, p.pl);
...@@ -339,7 +339,7 @@ static int irda_extract_octseq(void *self, __u8 *buf, int len, __u8 pi, ...@@ -339,7 +339,7 @@ static int irda_extract_octseq(void *self, __u8 *buf, int len, __u8 pi,
irda_param_t p; irda_param_t p;
p.pi = pi; /* In case handler needs to know */ p.pi = pi; /* In case handler needs to know */
p.pl = buf[1]; /* Extract lenght of value */ p.pl = buf[1]; /* Extract length of value */
/* Check if buffer is long enough for parsing */ /* Check if buffer is long enough for parsing */
if (len < (2+p.pl)) { if (len < (2+p.pl)) {
......
...@@ -238,7 +238,7 @@ async_bump(struct net_device *dev, ...@@ -238,7 +238,7 @@ async_bump(struct net_device *dev,
skb_reserve(newskb, 1); skb_reserve(newskb, 1);
if(docopy) { if(docopy) {
/* Copy data without CRC (lenght already checked) */ /* Copy data without CRC (length already checked) */
skb_copy_to_linear_data(newskb, rx_buff->data, skb_copy_to_linear_data(newskb, rx_buff->data,
rx_buff->len - 2); rx_buff->len - 2);
/* Deliver this skb */ /* Deliver this skb */
......
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