staging: r8188eu: rename parameter pFirmware of load_firmware()
authorMichael Straube <straube.linux@gmail.com>
Fri, 7 Jan 2022 10:36:08 +0000 (11:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Jan 2022 15:13:43 +0000 (16:13 +0100)
Rename the parameter pFirmware of load_firmware() to avoid camel case.

pFirmware -> rtfw

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20220107103620.15648-8-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/hal/rtl8188e_hal_init.c

index bd7f3dc..5c1da9d 100644 (file)
@@ -508,7 +508,7 @@ static s32 _FWFreeToGo(struct adapter *padapter)
        return _FAIL;
 }
 
-static int load_firmware(struct rt_firmware *pFirmware, struct device *device)
+static int load_firmware(struct rt_firmware *rtfw, struct device *device)
 {
        int ret = _SUCCESS;
        const struct firmware *fw;
@@ -530,15 +530,15 @@ static int load_firmware(struct rt_firmware *pFirmware, struct device *device)
                goto exit;
        }
 
-       pFirmware->szFwBuffer = kzalloc(FW_8188E_SIZE, GFP_KERNEL);
-       if (!pFirmware->szFwBuffer) {
-               pr_err("Failed to allocate pFirmware->szFwBuffer\n");
+       rtfw->szFwBuffer = kzalloc(FW_8188E_SIZE, GFP_KERNEL);
+       if (!rtfw->szFwBuffer) {
+               pr_err("Failed to allocate rtfw->szFwBuffer\n");
                ret = _FAIL;
                goto exit;
        }
-       memcpy(pFirmware->szFwBuffer, fw->data, fw->size);
-       pFirmware->ulFwLength = fw->size;
-       dev_dbg(device, "!bUsedWoWLANFw, FmrmwareLen:%d+\n", pFirmware->ulFwLength);
+       memcpy(rtfw->szFwBuffer, fw->data, fw->size);
+       rtfw->ulFwLength = fw->size;
+       dev_dbg(device, "!bUsedWoWLANFw, FmrmwareLen:%d+\n", rtfw->ulFwLength);
 
 exit:
        release_firmware(fw);