aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/rtnetlink.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/rtnetlink.h')
-rw-r--r--include/net/rtnetlink.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/rtnetlink.h b/include/net/rtnetlink.h
index ead018744ff5..14b6b3af8918 100644
--- a/include/net/rtnetlink.h
+++ b/include/net/rtnetlink.h
@@ -13,10 +13,10 @@ enum rtnl_link_flags {
13 RTNL_FLAG_DOIT_UNLOCKED = 1, 13 RTNL_FLAG_DOIT_UNLOCKED = 1,
14}; 14};
15 15
16int __rtnl_register(int protocol, int msgtype,
17 rtnl_doit_func, rtnl_dumpit_func, unsigned int flags);
18void rtnl_register(int protocol, int msgtype, 16void rtnl_register(int protocol, int msgtype,
19 rtnl_doit_func, rtnl_dumpit_func, unsigned int flags); 17 rtnl_doit_func, rtnl_dumpit_func, unsigned int flags);
18int rtnl_register_module(struct module *owner, int protocol, int msgtype,
19 rtnl_doit_func, rtnl_dumpit_func, unsigned int flags);
20int rtnl_unregister(int protocol, int msgtype); 20int rtnl_unregister(int protocol, int msgtype);
21void rtnl_unregister_all(int protocol); 21void rtnl_unregister_all(int protocol);
22 22