Thread (26 messages) 26 messages, 3 authors, 2017-03-01

Re: [PATCH 4/5] staging: sm750fb: Remove unnecessary else after return

From: SIMRAN SINGHAL <hidden>
Date: 2017-02-27 20:31:52
Also in: lkml

On Tue, Feb 28, 2017 at 1:01 AM, Joe Perches [off-list ref] wrote:
On Mon, 2017-02-27 at 23:44 +0530, simran singhal wrote:
quoted
This patch fixes the checkpatch warning that else is not generally
useful after a break or return.
[]
quoted
diff --git a/drivers/staging/sm750fb/ddk750_swi2c.c b/drivers/staging/sm750fb/ddk750_swi2c.c
[]
quoted
@@ -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.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help