mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-09 00:12:36 +01:00
station: Simplify and comply with coding style
This commit is contained in:
parent
94e2769e93
commit
48be2c0252
@ -1164,19 +1164,20 @@ static void station_enter_state(struct station *station,
|
|||||||
case STATION_STATE_CONNECTED:
|
case STATION_STATE_CONNECTED:
|
||||||
periodic_scan_stop(station);
|
periodic_scan_stop(station);
|
||||||
|
|
||||||
|
if (!station->netconfig)
|
||||||
|
break;
|
||||||
|
|
||||||
if (station->state == STATION_STATE_ROAMING) {
|
if (station->state == STATION_STATE_ROAMING) {
|
||||||
if (station->netconfig)
|
netconfig_reconfigure(station->netconfig);
|
||||||
netconfig_reconfigure(station->netconfig);
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (station->netconfig)
|
netconfig_configure(station->netconfig,
|
||||||
netconfig_configure(station->netconfig,
|
network_get_settings(
|
||||||
network_get_settings(
|
station->connected_network),
|
||||||
station->connected_network),
|
netdev_get_address(
|
||||||
netdev_get_address(
|
station->netdev));
|
||||||
station->netdev));
|
|
||||||
break;
|
break;
|
||||||
case STATION_STATE_DISCONNECTING:
|
case STATION_STATE_DISCONNECTING:
|
||||||
case STATION_STATE_ROAMING:
|
case STATION_STATE_ROAMING:
|
||||||
@ -3066,9 +3067,10 @@ static void station_free(struct station *station)
|
|||||||
if (station->connected_bss)
|
if (station->connected_bss)
|
||||||
netdev_disconnect(station->netdev, NULL, NULL);
|
netdev_disconnect(station->netdev, NULL, NULL);
|
||||||
|
|
||||||
if (station->netconfig)
|
if (station->netconfig) {
|
||||||
netconfig_destroy(station->netconfig);
|
netconfig_destroy(station->netconfig);
|
||||||
station->netconfig = NULL;
|
station->netconfig = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
periodic_scan_stop(station);
|
periodic_scan_stop(station);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user