Re: [PATCH v3] staging: rtl8723bs: remove unnecessary goto jumps

2021-04-11 Thread Bryan Brattlof
On Sun, Apr 11, 2021 at 08:43:05AM +0200, Greg Kroah-Hartman wrote: > >On Sat, Apr 10, 2021 at 03:27:02PM +, Bryan Brattlof wrote: >> The next instruction for both 'goto exit' jump statements is to >> execute the exit jump instructions regardless. We can safely >> remove all jump statements fro

Re: [PATCH v3] staging: rtl8723bs: remove unnecessary goto jumps

2021-04-10 Thread Greg Kroah-Hartman
On Sat, Apr 10, 2021 at 03:27:02PM +, Bryan Brattlof wrote: > The next instruction for both 'goto exit' jump statements is to > execute the exit jump instructions regardless. We can safely > remove all jump statements from __init rtw_drv_entry() > > This will also remove the extra line-break b

[PATCH v3] staging: rtl8723bs: remove unnecessary goto jumps

2021-04-10 Thread Bryan Brattlof
The next instruction for both 'goto exit' jump statements is to execute the exit jump instructions regardless. We can safely remove all jump statements from __init rtw_drv_entry() This will also remove the extra line-break before module_init() that checkpatch.pl was concerned with. Signed-off-by: