Loading wifi/java/android/net/wifi/WifiStateMachine.java +5 −17 Original line number Diff line number Diff line Loading @@ -2528,19 +2528,7 @@ public class WifiStateMachine extends StateMachine { mWakeLock.acquire(); WifiNative.startDriverCommand(); mWakeLock.release(); break; case WifiMonitor.SUPPLICANT_STATE_CHANGE_EVENT: SupplicantState state = handleSupplicantStateChange(message); /* A driver start causes supplicant to first report an INTERFACE_DISABLED * state before transitioning out of it for connection. Stay in * DriverStoppedState until we get an INTERFACE_DISABLED state and transition * to DriverStarting upon getting that * TODO: Fix this when the supplicant can be made to just transition out of * INTERFACE_DISABLED state when driver gets started */ if (state == SupplicantState.INTERFACE_DISABLED) { transitionTo(mDriverStartingState); } break; default: return NOT_HANDLED; Loading Loading
wifi/java/android/net/wifi/WifiStateMachine.java +5 −17 Original line number Diff line number Diff line Loading @@ -2528,19 +2528,7 @@ public class WifiStateMachine extends StateMachine { mWakeLock.acquire(); WifiNative.startDriverCommand(); mWakeLock.release(); break; case WifiMonitor.SUPPLICANT_STATE_CHANGE_EVENT: SupplicantState state = handleSupplicantStateChange(message); /* A driver start causes supplicant to first report an INTERFACE_DISABLED * state before transitioning out of it for connection. Stay in * DriverStoppedState until we get an INTERFACE_DISABLED state and transition * to DriverStarting upon getting that * TODO: Fix this when the supplicant can be made to just transition out of * INTERFACE_DISABLED state when driver gets started */ if (state == SupplicantState.INTERFACE_DISABLED) { transitionTo(mDriverStartingState); } break; default: return NOT_HANDLED; Loading