aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/datalink.h
diff options
context:
space:
mode:
authorRashika Kheria <rashika.kheria@gmail.com>2014-02-09 22:27:41 +0530
committerDavid S. Miller <davem@davemloft.net>2014-02-09 17:32:50 -0800
commit7780d8ae4ae1960ef7c0570de0a1ecd7b60c8152 (patch)
tree9ccca3dbbb2f74383b9d9049c8cf491e940501e6 /include/net/datalink.h
parentnet: Move prototype declaration to header file include/net/ipx.h from net/ipx/af_ipx.c (diff)
downloadlinux-dev-7780d8ae4ae1960ef7c0570de0a1ecd7b60c8152.tar.xz
linux-dev-7780d8ae4ae1960ef7c0570de0a1ecd7b60c8152.zip
net: Move prototype declaration to header file include/net/datalink.h from net/ipx/af_ipx.c
Move prototype declarations of function to header file include/net/datalink.h from net/ipx/af_ipx.c because they are used by more than one file. This eliminates the following warning in net/ipx/pe2.c: net/ipx/pe2.c:20:24: warning: no previous prototype for ‘make_EII_client’ [-Wmissing-prototypes] net/ipx/pe2.c:32:6: warning: no previous prototype for ‘destroy_EII_client’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/datalink.h')
-rw-r--r--include/net/datalink.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/datalink.h b/include/net/datalink.h
index deb7ca75db48..93cb18f729b5 100644
--- a/include/net/datalink.h
+++ b/include/net/datalink.h
@@ -15,4 +15,6 @@ struct datalink_proto {
struct list_head node;
};
+struct datalink_proto *make_EII_client(void);
+void destroy_EII_client(struct datalink_proto *dl);
#endif