aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/net-sysfs.h
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-23 21:14:45 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-23 21:27:56 -0700
commit342709efc7a4ba91eac6d2d2d931ec316a587dfa (patch)
tree0c1422caab17a50f5db7b1ea07c9d89258c913aa /net/core/net-sysfs.h
parenta37ae4086e7e804db534bc8f2d31c2fbf89c5761 (diff)
downloadkernel_samsung_smdk4412-342709efc7a4ba91eac6d2d2d931ec316a587dfa.zip
kernel_samsung_smdk4412-342709efc7a4ba91eac6d2d2d931ec316a587dfa.tar.gz
kernel_samsung_smdk4412-342709efc7a4ba91eac6d2d2d931ec316a587dfa.tar.bz2
[NET]: Remove in-code externs for some functions from net/core/dev.c
Inconsistent prototype and real type for functions may have worse consequences, than those for variables, so move them into a header. Since they are used privately in net/core, make this file reside in the same place. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net-sysfs.h')
-rw-r--r--net/core/net-sysfs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/core/net-sysfs.h b/net/core/net-sysfs.h
new file mode 100644
index 0000000..f5f108d
--- /dev/null
+++ b/net/core/net-sysfs.h
@@ -0,0 +1,8 @@
+#ifndef __NET_SYSFS_H__
+#define __NET_SYSFS_H__
+
+int netdev_kobject_init(void);
+int netdev_register_kobject(struct net_device *);
+void netdev_unregister_kobject(struct net_device *);
+
+#endif