diff options
author | Tilman Schmidt <tilman@imap.cc> | 2006-04-11 01:55:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-11 09:18:50 -0400 |
commit | 443e1f45ac1fee498e3ff053c61fcc54024ee6ee (patch) | |
tree | 9f837cc00736ddfc57d74b5a74b6785991f907fc /drivers/isdn/gigaset/isocdata.c | |
parent | abfd1dc7c18e4be89715071a524324c7b2515565 (diff) |
[PATCH] isdn4linux: Siemens Gigaset drivers: remove private version of __skb_put()
With Hansjoerg Lipp <hjlipp@web.de>
Remove the private version of __skb_put() from the Siemens Gigaset drivers.
Signed-off-by: Hansjoerg Lipp <hjlipp@web.de>
Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/isdn/gigaset/isocdata.c')
-rw-r--r-- | drivers/isdn/gigaset/isocdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/gigaset/isocdata.c b/drivers/isdn/gigaset/isocdata.c index 5f2f47fdc045..2f1628734a38 100644 --- a/drivers/isdn/gigaset/isocdata.c +++ b/drivers/isdn/gigaset/isocdata.c | |||
@@ -532,7 +532,7 @@ static inline void hdlc_putbyte(unsigned char c, struct bc_state *bcs) | |||
532 | bcs->skb = NULL; | 532 | bcs->skb = NULL; |
533 | return; | 533 | return; |
534 | } | 534 | } |
535 | *gigaset_skb_put_quick(bcs->skb, 1) = c; | 535 | *__skb_put(bcs->skb, 1) = c; |
536 | } | 536 | } |
537 | 537 | ||
538 | /* hdlc_flush | 538 | /* hdlc_flush |