On Tue, Feb 28, 2017 at 1:01 AM, Joe Perches <j...@perches.com> wrote: > On Mon, 2017-02-27 at 23:44 +0530, simran singhal wrote: >> This patch fixes the checkpatch warning that else is not generally >> useful after a break or return. > [] >> diff --git a/drivers/staging/sm750fb/ddk750_swi2c.c >> b/drivers/staging/sm750fb/ddk750_swi2c.c > [] >> @@ -295,8 +294,7 @@ static long sw_i2c_write_byte(unsigned char data) >> >> if (i < 0xff) >> return 0; >> - else >> - return -1; >> + return -1; > > Assuming -1 is some sort of error, > it'd be a more common style to use > > if (i >= 0xff) > return -1; > > return 0; > > Looking at the code, it might make > sense to use something like: > > /* SDA still != 0 */ > if (i >= 0xff) > return -1; > > return 0; > } I will send v2. _______________________________________________ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
- [PATCH 1/5] staging: lustre: Remove unnecessary else after ... simran singhal
- [PATCH 3/5] staging: rtl8712: Remove unnecessary else ... simran singhal
- Re: [Outreachy kernel] [PATCH 3/5] staging: rtl871... Julia Lawall
- Re: [Outreachy kernel] [PATCH 3/5] staging: rt... SIMRAN SINGHAL
- Re: [Outreachy kernel] [PATCH 3/5] staging... Julia Lawall
- [PATCH 2/5] staging: rtl8192u: Remove unnecessary else... simran singhal
- [PATCH 4/5] staging: sm750fb: Remove unnecessary else ... simran singhal
- Re: [PATCH 4/5] staging: sm750fb: Remove unnecessa... Joe Perches
- Re: [PATCH 4/5] staging: sm750fb: Remove unnec... SIMRAN SINGHAL
- Re: [Outreachy kernel] [PATCH 4/5] staging: sm750f... Julia Lawall
- Re: [Outreachy kernel] [PATCH 4/5] staging: sm... SIMRAN SINGHAL
- Re: [Outreachy kernel] [PATCH 4/5] staging... Julia Lawall
- Re: [Outreachy kernel] [PATCH 4/5] st... SIMRAN SINGHAL
- [PATCH 5/5] staging: gdm724x: Remove unnecessary else ... simran singhal
- Re: [PATCH 5/5] staging: gdm724x: Remove unnecessa... Joe Perches
- Re: [PATCH 5/5] staging: gdm724x: Remove unnec... SIMRAN SINGHAL
- Re: [PATCH 5/5] staging: gdm724x: Remove u... SIMRAN SINGHAL
- Re: [PATCH 5/5] staging: gdm724x: Rem... Joe Perches
- Re: [Outreachy kernel] Re: [PATCH... Julia Lawall