Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200371
b: refs/heads/master
c: aea34e7
h: refs/heads/master
i:
  200369: cd349a7
  200367: 8e3ef9c
v: v3
  • Loading branch information
Dan Carpenter authored and David S. Miller committed Jun 9, 2010
1 parent 069fa18 commit 070af77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e13647c158307f0e7ff5fc5bec34731f28917595
refs/heads/master: aea34e7ae7a40bc72f9f11b5658160dfb4b90c48
2 changes: 1 addition & 1 deletion trunk/net/caif/cfrfml.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static int cfrfml_transmit(struct cflayer *layr, struct cfpkt *pkt)
if (!cfsrvl_ready(service, &ret))
return ret;

if (!cfpkt_getlen(pkt) > CAIF_MAX_PAYLOAD_SIZE) {
if (cfpkt_getlen(pkt) > CAIF_MAX_PAYLOAD_SIZE) {
pr_err("CAIF: %s():Packet too large - size=%d\n",
__func__, cfpkt_getlen(pkt));
return -EOVERFLOW;
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/caif/cfveil.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static int cfvei_transmit(struct cflayer *layr, struct cfpkt *pkt)
return ret;
caif_assert(layr->dn != NULL);
caif_assert(layr->dn->transmit != NULL);
if (!cfpkt_getlen(pkt) > CAIF_MAX_PAYLOAD_SIZE) {
if (cfpkt_getlen(pkt) > CAIF_MAX_PAYLOAD_SIZE) {
pr_warning("CAIF: %s(): Packet too large - size=%d\n",
__func__, cfpkt_getlen(pkt));
return -EOVERFLOW;
Expand Down

0 comments on commit 070af77

Please sign in to comment.