Re: [PATCH] nfc/fdp: remove unnecessary assignment and label

2021-04-07 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Wed, 7 Apr 2021 11:16:38 +0800 you wrote: > From: wengjianfeng > > In function fdp_nci_patch_otp and fdp_nci_patch_ram,many goto > out statements are used, and out label just return variable r. > in some places,just j

[PATCH] nfc/fdp: remove unnecessary assignment and label

2021-04-06 Thread samirweng1979
From: wengjianfeng In function fdp_nci_patch_otp and fdp_nci_patch_ram,many goto out statements are used, and out label just return variable r. in some places,just jump to the out label, and in other places, assign a value to the variable r,then jump to the out label. It is unnecessary, we just u