mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
brcmfmac: request_firmware_direct is quieter
Since we don't have any CLM-capable firmware yet, silence the warning of its absence by using request_firmware_direct, which should also be marginally quicker. Signed-off-by: Phil Elwell <phil@raspberrypi.org>
This commit is contained in:
@@ -149,7 +149,7 @@ static int brcmf_c_process_clm_blob(struct brcmf_if *ifp)
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = request_firmware(&clm, clm_name, bus->dev);
|
err = request_firmware_direct(&clm, clm_name, bus->dev);
|
||||||
if (err) {
|
if (err) {
|
||||||
brcmf_info("no clm_blob available (err=%d), device may have limited channels available\n",
|
brcmf_info("no clm_blob available (err=%d), device may have limited channels available\n",
|
||||||
err);
|
err);
|
||||||
|
|||||||
Reference in New Issue
Block a user