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:
Phil Elwell
2017-10-06 13:23:32 +01:00
committed by popcornmix
parent 53db66e6df
commit 9e51aad43c

View File

@@ -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);