We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1123de9 + e36fcea commit 329b797Copy full SHA for 329b797
wifi/java/android/net/wifi/WifiStateMachine.java
@@ -1911,6 +1911,12 @@ public boolean processMessage(Message message) {
1911
transitionTo(mDriverUnloadingState);
1912
break;
1913
case CMD_START_SUPPLICANT:
1914
+ try {
1915
+ mNwService.wifiFirmwareReload(mInterfaceName, "STA");
1916
+ } catch (Exception e) {
1917
+ Log.e(TAG, "Failed to reload STA firmware " + e);
1918
+ // continue
1919
+ }
1920
//A runtime crash can leave the interface up and
1921
//this affects connectivity when supplicant starts up.
1922
//Ensure interface is down before a supplicant start.
0 commit comments