diff options
Diffstat (limited to 'net/irda/af_irda.c')
-rw-r--r-- | net/irda/af_irda.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/irda/af_irda.c b/net/irda/af_irda.c index 759445648667..627b11342233 100644 --- a/net/irda/af_irda.c +++ b/net/irda/af_irda.c | |||
@@ -1302,7 +1302,7 @@ static int irda_sendmsg(struct kiocb *iocb, struct socket *sock, | |||
1302 | if (sk->sk_state != TCP_ESTABLISHED) | 1302 | if (sk->sk_state != TCP_ESTABLISHED) |
1303 | return -ENOTCONN; | 1303 | return -ENOTCONN; |
1304 | 1304 | ||
1305 | /* Check that we don't send out to big frames */ | 1305 | /* Check that we don't send out too big frames */ |
1306 | if (len > self->max_data_size) { | 1306 | if (len > self->max_data_size) { |
1307 | IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n", | 1307 | IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n", |
1308 | __FUNCTION__, len, self->max_data_size); | 1308 | __FUNCTION__, len, self->max_data_size); |
@@ -1546,7 +1546,7 @@ static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock, | |||
1546 | IRDA_ASSERT(self != NULL, return -1;); | 1546 | IRDA_ASSERT(self != NULL, return -1;); |
1547 | 1547 | ||
1548 | /* | 1548 | /* |
1549 | * Check that we don't send out to big frames. This is an unreliable | 1549 | * Check that we don't send out too big frames. This is an unreliable |
1550 | * service, so we have no fragmentation and no coalescence | 1550 | * service, so we have no fragmentation and no coalescence |
1551 | */ | 1551 | */ |
1552 | if (len > self->max_data_size) { | 1552 | if (len > self->max_data_size) { |
@@ -1642,7 +1642,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock, | |||
1642 | } | 1642 | } |
1643 | 1643 | ||
1644 | /* | 1644 | /* |
1645 | * Check that we don't send out to big frames. This is an unreliable | 1645 | * Check that we don't send out too big frames. This is an unreliable |
1646 | * service, so we have no fragmentation and no coalescence | 1646 | * service, so we have no fragmentation and no coalescence |
1647 | */ | 1647 | */ |
1648 | if (len > self->max_data_size) { | 1648 | if (len > self->max_data_size) { |