]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
brcmfmac: Delete useless kfree code
authorZheng Yongjun <zhengyongjun3@huawei.com>
Tue, 22 Dec 2020 13:51:13 +0000 (21:51 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 14 Jan 2021 17:32:03 +0000 (19:32 +0200)
A null pointer will be passed to a kfree() call after a kzalloc() call failed.
This code is useless. Thus delete the extra function call.

A goto statement is also no longer needed. Thus adjust an if branch.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20201222135113.20680-1-zhengyongjun3@huawei.com
drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.c

index d821a4758f8cf0d3df5f7092d7cda8478499d7ed..d40104b8df5556d1e86e773914c0c002ea17a528 100644 (file)
@@ -319,8 +319,10 @@ static void brcmf_fw_strip_multi_v2(struct nvram_parser *nvp, u16 domain_nr,
        u8 *nvram;
 
        nvram = kzalloc(nvp->nvram_len + 1 + 3 + sizeof(u32), GFP_KERNEL);
-       if (!nvram)
-               goto fail;
+       if (!nvram) {
+               nvp->nvram_len = 0;
+               return;
+       }
 
        /* Copy all valid entries, release old nvram and assign new one.
         * Valid entries are of type pcie/X/Y/ where X = domain_nr and
@@ -350,10 +352,6 @@ static void brcmf_fw_strip_multi_v2(struct nvram_parser *nvp, u16 domain_nr,
        kfree(nvp->nvram);
        nvp->nvram = nvram;
        nvp->nvram_len = j;
-       return;
-fail:
-       kfree(nvram);
-       nvp->nvram_len = 0;
 }
 
 static void brcmf_fw_add_defaults(struct nvram_parser *nvp)