From: Rami Rosen Date: Tue, 10 Jun 2008 19:37:42 +0000 (-0700) Subject: ipv4: Remove unused declaration from include/net/tcp.h. X-Git-Tag: v2.6.26-rc6~13^2~9 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=45d465bc237ab1e1ebb4c65b9b318830dafb7509;p=~shefty%2Frdma-dev.git ipv4: Remove unused declaration from include/net/tcp.h. - The tcp_unhash() method in /include/net/tcp.h is no more needed, as the unhash method in tcp_prot structure is now inet_unhash (instead of tcp_unhash in the past); see tcp_prot structure in net/ipv4/tcp_ipv4.c. - So, this patch removes tcp_unhash() declaration from include/net/tcp.h Signed-off-by: Rami Rosen Signed-off-by: David S. Miller --- diff --git a/include/net/tcp.h b/include/net/tcp.h index 633147cb6bb..d448310c82c 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -433,7 +433,6 @@ extern struct sk_buff * tcp_make_synack(struct sock *sk, extern int tcp_disconnect(struct sock *sk, int flags); -extern void tcp_unhash(struct sock *sk); /* From syncookies.c */ extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS];