iwlwifi: don't print module loading error if not modular
If the opmode modules aren't modular, there's no point in printing an error message that request_module() failed. This will happen because the probe runs during iwlwifi's init and the opmode is only added during its init. Reported-by: Jörg Otte <jrg.otte@gmail.com> Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
a87783699b
commit
8edf3fd6eb
|
@ -1000,10 +1000,12 @@ static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
|
||||||
*/
|
*/
|
||||||
if (load_module) {
|
if (load_module) {
|
||||||
err = request_module("%s", op->name);
|
err = request_module("%s", op->name);
|
||||||
|
#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
|
||||||
if (err)
|
if (err)
|
||||||
IWL_ERR(drv,
|
IWL_ERR(drv,
|
||||||
"failed to load module %s (error %d), is dynamic loading enabled?\n",
|
"failed to load module %s (error %d), is dynamic loading enabled?\n",
|
||||||
op->name, err);
|
op->name, err);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue