system-linux: make system_if_get_master_ifindex static
authorChristian Marangi <ansuelsmth@gmail.com>
Thu, 9 Nov 2023 16:19:48 +0000 (17:19 +0100)
committerChristian Marangi <ansuelsmth@gmail.com>
Thu, 9 Nov 2023 16:19:48 +0000 (17:19 +0100)
Make system_if_get_master_ifindex static as it was wrongly exposed and
is only used in system-linux.c.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
system-linux.c
system.h

index 515e1b38ecd4fa69eddfaeea703945c0cbd700f8..00530f2dc4e9313986b26a9e41aaa954e579a007 100644 (file)
@@ -1796,7 +1796,7 @@ static int cb_if_get_master_error(struct sockaddr_nl *nla, struct nlmsgerr *err,
        return NL_STOP;
 }
 
-int system_if_get_master_ifindex(struct device *dev)
+static int system_if_get_master_ifindex(struct device *dev)
 {
        struct nl_cb *cb = nl_cb_alloc(NL_CB_DEFAULT);
        struct nl_msg *msg;
index e9661f2eb7640da7ad7164e71bc12c6a0d033eff..890966b26e3b14654bfcdef0ff8c9e37e03a76d5 100644 (file)
--- a/system.h
+++ b/system.h
@@ -275,7 +275,6 @@ int system_if_resolve(struct device *dev);
 int system_if_dump_info(struct device *dev, struct blob_buf *b);
 int system_if_dump_stats(struct device *dev, struct blob_buf *b);
 struct device *system_if_get_parent(struct device *dev);
-int system_if_get_master_ifindex(struct device *dev);
 bool system_if_force_external(const char *ifname);
 void system_if_apply_settings(struct device *dev, struct device_settings *s,
                              uint64_t apply_mask);