nexus: Add some logging output to WifiController

Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
San Mehat 2009-06-16 10:50:47 -07:00
parent 5fc4129fcb
commit 0f48658d20
1 changed files with 6 additions and 0 deletions

View File

@ -69,7 +69,9 @@ int WifiController::stop() {
}
int WifiController::enable() {
if (!isPoweredUp()) {
LOGI("Powering up");
sendStatusBroadcast("Powering up WiFi hardware");
if (powerUp()) {
LOGE("Powerup failed (%s)", strerror(errno));
@ -78,6 +80,7 @@ int WifiController::enable() {
}
if (mModuleName[0] != '\0' && !isKernelModuleLoaded(mModuleName)) {
LOGI("Loading driver");
sendStatusBroadcast("Loading WiFi driver");
if (loadKernelModule(mModulePath, mModuleArgs)) {
LOGE("Kernel module load failed (%s)", strerror(errno));
@ -86,6 +89,7 @@ int WifiController::enable() {
}
if (!isFirmwareLoaded()) {
LOGI("Loading firmware");
sendStatusBroadcast("Loading WiFI firmware");
if (loadFirmware()) {
LOGE("Firmware load failed (%s)", strerror(errno));
@ -94,6 +98,7 @@ int WifiController::enable() {
}
if (!mSupplicant->isStarted()) {
LOGI("Starting WPA Supplicant");
sendStatusBroadcast("Starting WPA Supplicant");
if (mSupplicant->start()) {
LOGE("Supplicant start failed (%s)", strerror(errno));
@ -113,6 +118,7 @@ int WifiController::enable() {
mPropMngr->registerProperty("wifi.scanmode", this);
mPropMngr->registerProperty("wifi.interface", this);
LOGI("Enabled successfully");
return 0;
out_unloadmodule: