treewide: make some functions static
authorHans Dedecker <dedeckeh@gmail.com>
Sat, 17 Nov 2018 17:41:16 +0000 (18:41 +0100)
committerHans Dedecker <dedeckeh@gmail.com>
Mon, 19 Nov 2018 08:02:29 +0000 (09:02 +0100)
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
bridge.c
device.c
device.h
interface-ip.c
interface-ip.h
interface.c
interface.h

index 887687162c09cd4f1e492353746d4f768b33744a..da450a1392ce0bf182e74f38b454db2803f2031b 100644 (file)
--- a/bridge.c
+++ b/bridge.c
@@ -77,7 +77,7 @@ static struct device *bridge_create(const char *name, struct device_type *devtyp
 static void bridge_config_init(struct device *dev);
 static void bridge_free(struct device *dev);
 static void bridge_dump_info(struct device *dev, struct blob_buf *b);
-enum dev_change_type
+static enum dev_change_type
 bridge_reload(struct device *dev, struct blob_attr *attr);
 
 static struct device_type bridge_device_type = {
@@ -633,7 +633,7 @@ bridge_apply_settings(struct bridge_state *bst, struct blob_attr **tb)
                cfg->bridge_empty = blobmsg_get_bool(cur);
 }
 
-enum dev_change_type
+static enum dev_change_type
 bridge_reload(struct device *dev, struct blob_attr *attr)
 {
        struct blob_attr *tb_dev[__DEV_ATTR_MAX];
index beac2c4b0aa0d0c8122b83b16663072526c759cf..128151a1eb8105116ac04f46cbb7d088c518f9ea 100644 (file)
--- a/device.c
+++ b/device.c
@@ -733,7 +733,7 @@ void device_add_user(struct device_user *dep, struct device *dev)
        __device_add_user(dep, dev);
 }
 
-void
+static void
 device_free(struct device *dev)
 {
        __devlock++;
index 63f937a7ae5d6753bb5ac390a37d5c48ec4474d8..5f3fae29355bff33ebc82c7b37dfd1054531b7a3 100644 (file)
--- a/device.h
+++ b/device.h
@@ -269,7 +269,6 @@ void device_release(struct device_user *dep);
 int device_check_state(struct device *dev);
 void device_dump_status(struct blob_buf *b, struct device *dev);
 
-void device_free(struct device *dev);
 void device_free_unused(struct device *dev);
 
 struct device *get_vlan_device_chain(const char *ifname, bool create);
index b7c1807eb1b0bc394943013f17cb8fba8b23058d..9cea0a6e7b21cf20a661f15eeef817c5195a1807 100644 (file)
@@ -1176,7 +1176,7 @@ interface_ip_set_ula_prefix(const char *prefix)
        }
 }
 
-void
+static void
 interface_add_dns_server(struct interface_ip_settings *ip, const char *str)
 {
        struct dns_server *s;
index 197bd9a5a1c7e3304c7f3e3efc5a4128f00f425b..5374d9386955e09a8c85990a0a7ff79276435606 100644 (file)
@@ -153,7 +153,6 @@ extern const struct uci_blob_param_list route_attr_list;
 extern struct list_head prefixes;
 
 void interface_ip_init(struct interface *iface);
-void interface_add_dns_server(struct interface_ip_settings *ip, const char *str);
 void interface_add_dns_server_list(struct interface_ip_settings *ip, struct blob_attr *list);
 void interface_add_dns_search_list(struct interface_ip_settings *ip, struct blob_attr *list);
 void interface_write_resolv_conf(void);
index 4a09a220f79f460abedeb9ba6848df1e7cb8093f..041f0a5e07f678048d7a72df26376c79c10acc02 100644 (file)
@@ -78,7 +78,7 @@ const struct uci_blob_param_list interface_attr_list = {
 };
 
 static void
-set_config_state(struct interface *iface, enum interface_config_state s);
+interface_set_main_dev(struct interface *iface, struct device *dev);
 static void
 interface_event(struct interface *iface, enum interface_event ev);
 
@@ -964,7 +964,7 @@ interface_set_l3_dev(struct interface *iface, struct device *dev)
        }
 }
 
-void
+static void
 interface_set_main_dev(struct interface *iface, struct device *dev)
 {
        bool claimed = iface->l3_dev.claimed;
@@ -988,7 +988,7 @@ interface_set_main_dev(struct interface *iface, struct device *dev)
                interface_set_l3_dev(iface, dev);
 }
 
-int
+static int
 interface_remove_link(struct interface *iface, struct device *dev)
 {
        struct device *mdev = iface->main_dev.dev;
index f92a35eb7651bd52483194a4e6de9ad81c610fb3..098e0fc7e9f63e8d8830a0220f8aa9d8f44c6677 100644 (file)
@@ -186,13 +186,11 @@ void interface_set_up(struct interface *iface);
 void interface_set_down(struct interface *iface);
 int interface_renew(struct interface *iface);
 
-void interface_set_main_dev(struct interface *iface, struct device *dev);
 void interface_set_l3_dev(struct interface *iface, struct device *dev);
 
 void interface_add_user(struct interface_user *dep, struct interface *iface);
 void interface_remove_user(struct interface_user *dep);
 
-int interface_remove_link(struct interface *iface, struct device *dev);
 int interface_handle_link(struct interface *iface, const char *name, bool add, bool link_ext);
 
 void interface_add_error(struct interface *iface, const char *subsystem,