iwlwifi: s/iwl_ucode_callback/iwl_req_fw_callback

This name emphasizes more the role of the function: the
callback called when the ASYNC call to request_firmware
completes.

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Emmanuel Grumbach 2012-07-16 12:31:28 +03:00 committed by Johannes Berg
parent 36eb22e97a
commit 1c8e11e117
2 changed files with 8 additions and 7 deletions

View file

@ -194,7 +194,8 @@ static int iwl_alloc_fw_desc(struct iwl_drv *drv, struct fw_desc *desc,
return 0; return 0;
} }
static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context); static void iwl_req_fw_callback(const struct firmware *ucode_raw,
void *context);
#define UCODE_EXPERIMENTAL_INDEX 100 #define UCODE_EXPERIMENTAL_INDEX 100
#define UCODE_EXPERIMENTAL_TAG "exp" #define UCODE_EXPERIMENTAL_TAG "exp"
@ -231,7 +232,7 @@ static int iwl_request_firmware(struct iwl_drv *drv, bool first)
return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name, return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
drv->trans->dev, drv->trans->dev,
GFP_KERNEL, drv, iwl_ucode_callback); GFP_KERNEL, drv, iwl_req_fw_callback);
} }
struct fw_img_parsing { struct fw_img_parsing {
@ -760,12 +761,12 @@ static int validate_sec_sizes(struct iwl_drv *drv,
} }
/** /**
* iwl_ucode_callback - callback when firmware was loaded * iwl_req_fw_callback - callback when firmware was loaded
* *
* If loaded successfully, copies the firmware into buffers * If loaded successfully, copies the firmware into buffers
* for the card to fetch (via DMA). * for the card to fetch (via DMA).
*/ */
static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
{ {
struct iwl_drv *drv = context; struct iwl_drv *drv = context;
struct iwl_fw *fw = &drv->fw; struct iwl_fw *fw = &drv->fw;

View file

@ -90,9 +90,9 @@
* 4) The bus specific component configures the bus * 4) The bus specific component configures the bus
* 5) The bus specific component calls to the drv bus agnostic part * 5) The bus specific component calls to the drv bus agnostic part
* (iwl_drv_start) * (iwl_drv_start)
* 6) iwl_drv_start fetches the fw ASYNC, iwl_ucode_callback * 6) iwl_drv_start fetches the fw ASYNC, iwl_req_fw_callback
* 7) iwl_ucode_callback parses the fw file * 7) iwl_req_fw_callback parses the fw file
* 8) iwl_ucode_callback starts the wifi implementation to matches the fw * 8) iwl_req_fw_callback starts the wifi implementation to matches the fw
*/ */
struct iwl_drv; struct iwl_drv;