diff options
Diffstat (limited to 'include/net/udplite.h')
-rw-r--r-- | include/net/udplite.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/udplite.h b/include/net/udplite.h index 1473b3e49044..406eb755b34e 100644 --- a/include/net/udplite.h +++ b/include/net/udplite.h | |||
@@ -124,10 +124,10 @@ static inline int udplite_sender_cscov(struct udp_sock *up, struct udphdr *uh) | |||
124 | return cscov; | 124 | return cscov; |
125 | } | 125 | } |
126 | 126 | ||
127 | static inline u32 udplite_csum_outgoing(struct sock *sk, struct sk_buff *skb) | 127 | static inline __wsum udplite_csum_outgoing(struct sock *sk, struct sk_buff *skb) |
128 | { | 128 | { |
129 | u32 csum = 0; | ||
130 | int off, len, cscov = udplite_sender_cscov(udp_sk(sk), skb->h.uh); | 129 | int off, len, cscov = udplite_sender_cscov(udp_sk(sk), skb->h.uh); |
130 | __wsum csum = 0; | ||
131 | 131 | ||
132 | skb->ip_summed = CHECKSUM_NONE; /* no HW support for checksumming */ | 132 | skb->ip_summed = CHECKSUM_NONE; /* no HW support for checksumming */ |
133 | 133 | ||