device: Make device_disassociated static

This commit is contained in:
Denis Kenzior 2016-09-13 20:49:36 -05:00
parent 25fb91034a
commit 8a50054925
2 changed files with 1 additions and 2 deletions

View File

@ -528,7 +528,7 @@ void device_enter_state(struct device *device, enum device_state state)
device->state = state;
}
void device_disassociated(struct device *device)
static void device_disassociated(struct device *device)
{
struct network *network = device->connected_network;
struct l_dbus *dbus = dbus_get_bus();

View File

@ -55,7 +55,6 @@ uint32_t device_get_ifindex(struct device *device);
const uint8_t *device_get_address(struct device *device);
void device_enter_state(struct device *device, enum device_state state);
void device_disassociated(struct device *device);
void device_connect_network(struct device *device, struct network *network,
struct scan_bss *bss,
struct l_dbus_message *message);