On Tue, 2014-10-07 at 16:48 -0700, Serguey Parkhomovsky wrote:
> This patch fixes two unnecessary else conditions that were found by 
> checkpatch.pl.
[]
> diff --git a/drivers/staging/rtl8712/rtl8712_efuse.c 
> b/drivers/staging/rtl8712/rtl8712_efuse.c
[]
> @@ -414,19 +414,19 @@ u8 r8712_efuse_pg_packet_write(struct _adapter 
> *padapter, const u8 offset,
[]
> +             /* call rescue procedure */
> +             if (fix_header(padapter, efuse_data, efuse_addr) ==
> +                 false)
> +                     return false; /* rescue fail */

Probably better as:

                if (!fix_header(padapter, efuse_data, efuse_addr))
                        return false;   /* rescue fail */



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to