request_firmware_nowait — asynchronous version of request_firmware
int request_firmware_nowait ( | struct module * module, |
| bool uevent, | |
| const char * name, | |
| struct device * device, | |
| gfp_t gfp, | |
| void * context, | |
void (*cont)
(const struct firmware *fw, void *context)); |
modulemodule requesting the firmware
ueventsends uevent to copy the firmware image if this flag is non-zero else the firmware copy must be done manually.
namename of firmware file
devicedevice for which firmware is being loaded
gfpallocation flags
context
will be passed over to cont, and
fw may be NULL if firmware request fails.
contfunction will be called asynchronously when the firmware request is over.