Skip to content

Commit

Permalink
[PATCH] isdn/gigaset: convert warning message
Browse files Browse the repository at this point in the history
Make the failed-to-allocate-skb warning a non-debug message.

Signed-off-by: Tilman Schmidt <[email protected]>
Cc: Hansjoerg Lipp <[email protected]>
Cc: Karsten Keil <[email protected]>
Cc: Kai Germaschewski <[email protected]>
Cc: Akinobu Mita <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
tilmanschmidt authored and Linus Torvalds committed Nov 6, 2006
1 parent 18a61e4 commit e5b9a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/isdn/gigaset/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ static struct bc_state *gigaset_initbcs(struct bc_state *bcs,
} else if ((bcs->skb = dev_alloc_skb(SBUFSIZE + HW_HDR_LEN)) != NULL)
skb_reserve(bcs->skb, HW_HDR_LEN);
else {
gig_dbg(DEBUG_INIT, "could not allocate skb\n");
warn("could not allocate skb\n");
bcs->inputstate |= INS_skip_frame;
}

Expand Down

0 comments on commit e5b9a33

Please sign in to comment.