Skip to content

Commit

Permalink
[IrDA]: Misc spelling corrections.
Browse files Browse the repository at this point in the history
Spelling corrections, from "to" to "too".

Signed-off-by: G. Liakhovetski <gl@dsa-ac.de>
Signed-off-by: Samuel Ortiz <samuel@sortiz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
G. Liakhovetski authored and David S. Miller committed Apr 26, 2007
1 parent 599b1fa commit b450777
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion net/irda/irlap_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ static int irlap_state_query(struct irlap_cb *self, IRLAP_EVENT event,
if (!self->discovery_log) {
IRDA_WARNING("%s: discovery log is gone! "
"maybe the discovery timeout has been set"
" to short?\n", __FUNCTION__);
" too short?\n", __FUNCTION__);
break;
}
hashbin_insert(self->discovery_log,
Expand Down
14 changes: 7 additions & 7 deletions net/irda/irlap_frame.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static void irlap_recv_discovery_xid_rsp(struct irlap_cb *self,
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);

if (!pskb_may_pull(skb, sizeof(struct xid_frame))) {
IRDA_ERROR("%s: frame to short!\n", __FUNCTION__);
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
return;
}

Expand Down Expand Up @@ -484,7 +484,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self,
char *text;

if (!pskb_may_pull(skb, sizeof(struct xid_frame))) {
IRDA_ERROR("%s: frame to short!\n", __FUNCTION__);
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
return;
}

Expand Down Expand Up @@ -528,7 +528,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self,
/* Check if things are sane at this point... */
if((discovery_info == NULL) ||
!pskb_may_pull(skb, 3)) {
IRDA_ERROR("%s: discovery frame to short!\n",
IRDA_ERROR("%s: discovery frame too short!\n",
__FUNCTION__);
return;
}
Expand Down Expand Up @@ -1173,7 +1173,7 @@ static void irlap_recv_frmr_frame(struct irlap_cb *self, struct sk_buff *skb,
IRDA_ASSERT(info != NULL, return;);

if (!pskb_may_pull(skb, 4)) {
IRDA_ERROR("%s: frame to short!\n", __FUNCTION__);
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
return;
}

Expand Down Expand Up @@ -1262,15 +1262,15 @@ static void irlap_recv_test_frame(struct irlap_cb *self, struct sk_buff *skb,
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);

if (!pskb_may_pull(skb, sizeof(*frame))) {
IRDA_ERROR("%s: frame to short!\n", __FUNCTION__);
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
return;
}
frame = (struct test_frame *) skb->data;

/* Broadcast frames must carry saddr and daddr fields */
if (info->caddr == CBROADCAST) {
if (skb->len < sizeof(struct test_frame)) {
IRDA_DEBUG(0, "%s() test frame to short!\n",
IRDA_DEBUG(0, "%s() test frame too short!\n",
__FUNCTION__);
return;
}
Expand Down Expand Up @@ -1336,7 +1336,7 @@ int irlap_driver_rcv(struct sk_buff *skb, struct net_device *dev,

/* Check if frame is large enough for parsing */
if (!pskb_may_pull(skb, 2)) {
IRDA_ERROR("%s: frame to short!\n", __FUNCTION__);
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
dev_kfree_skb(skb);
return -1;
}
Expand Down
4 changes: 2 additions & 2 deletions net/irda/irttp.c
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ int irttp_udata_request(struct tsap_cb *self, struct sk_buff *skb)
}

if (skb->len > self->max_seg_size) {
IRDA_DEBUG(1, "%s(), UData is to large for IrLAP!\n",
IRDA_DEBUG(1, "%s(), UData is too large for IrLAP!\n",
__FUNCTION__);
goto err;
}
Expand Down Expand Up @@ -598,7 +598,7 @@ int irttp_data_request(struct tsap_cb *self, struct sk_buff *skb)
* inside an IrLAP frame
*/
if ((self->tx_max_sdu_size == 0) && (skb->len > self->max_seg_size)) {
IRDA_ERROR("%s: SAR disabled, and data is to large for IrLAP!\n",
IRDA_ERROR("%s: SAR disabled, and data is too large for IrLAP!\n",
__FUNCTION__);
ret = -EMSGSIZE;
goto err;
Expand Down
8 changes: 4 additions & 4 deletions net/irda/parameters.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi,
}
/* Check if buffer is long enough for insertion */
if (len < (2+p.pl)) {
IRDA_WARNING("%s: buffer to short for insertion!\n",
IRDA_WARNING("%s: buffer too short for insertion!\n",
__FUNCTION__);
return -1;
}
Expand Down Expand Up @@ -216,7 +216,7 @@ static int irda_extract_integer(void *self, __u8 *buf, int len, __u8 pi,

/* Check if buffer is long enough for parsing */
if (len < (2+p.pl)) {
IRDA_WARNING("%s: buffer to short for parsing! "
IRDA_WARNING("%s: buffer too short for parsing! "
"Need %d bytes, but len is only %d\n",
__FUNCTION__, p.pl, len);
return -1;
Expand Down Expand Up @@ -304,7 +304,7 @@ static int irda_extract_string(void *self, __u8 *buf, int len, __u8 pi,

/* Check if buffer is long enough for parsing */
if (len < (2+p.pl)) {
IRDA_WARNING("%s: buffer to short for parsing! "
IRDA_WARNING("%s: buffer too short for parsing! "
"Need %d bytes, but len is only %d\n",
__FUNCTION__, p.pl, len);
return -1;
Expand Down Expand Up @@ -343,7 +343,7 @@ static int irda_extract_octseq(void *self, __u8 *buf, int len, __u8 pi,

/* Check if buffer is long enough for parsing */
if (len < (2+p.pl)) {
IRDA_WARNING("%s: buffer to short for parsing! "
IRDA_WARNING("%s: buffer too short for parsing! "
"Need %d bytes, but len is only %d\n",
__FUNCTION__, p.pl, len);
return -1;
Expand Down

0 comments on commit b450777

Please sign in to comment.