mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-20 04:19:25 +01:00
network: Make network_emit_* static
This commit is contained in:
parent
a789703f6f
commit
80aba66e98
@ -286,7 +286,7 @@ bool __iwd_network_append_properties(const struct network *network,
|
||||
return true;
|
||||
}
|
||||
|
||||
void network_emit_added(struct network *network)
|
||||
static void network_emit_added(struct network *network)
|
||||
{
|
||||
struct l_dbus *dbus = dbus_get_bus();
|
||||
struct l_dbus_message *signal;
|
||||
@ -315,7 +315,7 @@ void network_emit_added(struct network *network)
|
||||
l_dbus_send(dbus, signal);
|
||||
}
|
||||
|
||||
void network_emit_removed(struct network *network)
|
||||
static void network_emit_removed(struct network *network)
|
||||
{
|
||||
struct l_dbus *dbus = dbus_get_bus();
|
||||
struct l_dbus_message *signal;
|
||||
|
@ -57,9 +57,6 @@ bool network_settings_load(struct network *network);
|
||||
void network_settings_close(struct network *network);
|
||||
void network_sync_psk(struct network *network);
|
||||
|
||||
void network_emit_added(struct network *network);
|
||||
void network_emit_removed(struct network *network);
|
||||
|
||||
bool network_register(struct network *network, const char *path);
|
||||
|
||||
void network_remove(struct network *network);
|
||||
|
Loading…
Reference in New Issue
Block a user