diff options
Diffstat (limited to 'drivers/isdn/gigaset/gigaset.h')
-rw-r--r-- | drivers/isdn/gigaset/gigaset.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/isdn/gigaset/gigaset.h b/drivers/isdn/gigaset/gigaset.h index 12153acc23e4..3596096ca073 100644 --- a/drivers/isdn/gigaset/gigaset.h +++ b/drivers/isdn/gigaset/gigaset.h | |||
@@ -852,23 +852,6 @@ static inline void gigaset_bchannel_up(struct bc_state *bcs) | |||
852 | /* handling routines for sk_buff */ | 852 | /* handling routines for sk_buff */ |
853 | /* ============================= */ | 853 | /* ============================= */ |
854 | 854 | ||
855 | /* private version of __skb_put() | ||
856 | * append 'len' bytes to the content of 'skb', already knowing that the | ||
857 | * existing buffer can accomodate them | ||
858 | * returns a pointer to the location where the new bytes should be copied to | ||
859 | * This function does not take any locks so it must be called with the | ||
860 | * appropriate locks held only. | ||
861 | */ | ||
862 | static inline unsigned char *gigaset_skb_put_quick(struct sk_buff *skb, | ||
863 | unsigned int len) | ||
864 | { | ||
865 | unsigned char *tmp = skb->tail; | ||
866 | /*SKB_LINEAR_ASSERT(skb);*/ /* not needed here */ | ||
867 | skb->tail += len; | ||
868 | skb->len += len; | ||
869 | return tmp; | ||
870 | } | ||
871 | |||
872 | /* pass received skb to LL | 855 | /* pass received skb to LL |
873 | * Warning: skb must not be accessed anymore! | 856 | * Warning: skb must not be accessed anymore! |
874 | */ | 857 | */ |