wifi_drv: remove misleading loading message

Fixes #1774.
This commit is contained in:
Josef Söntgen 2015-11-11 14:00:35 +01:00 committed by Christian Helmuth
parent dd933de84f
commit 2c9d2e1d32
2 changed files with 2 additions and 4 deletions

View File

@ -113,10 +113,6 @@ static void run_linux(void *)
module_iwl_drv_init();
}
PINF("+-----------------------+");
PINF("| iwl driver loaded |");
PINF("+-----------------------+");
_wpa_lock->unlock();
while (1) {

View File

@ -313,6 +313,8 @@ extern "C" int pci_register_driver(struct pci_driver *drv)
pci()->release_device(free_up);
}
if (!found) PERR("no usable wireless device found");
return found ? 0 : -ENODEV;
}