Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1238253 > unrolled thread
| Started by | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| First post | 2015-10-02 15:50 +0200 |
| Last post | 2015-10-02 18:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 16/18] Input: elan_i2c - simplify function return logic Javier Martinez Canillas <javier@osg.samsung.com> - 2015-10-02 15:50 +0200
Re: [PATCH 16/18] Input: elan_i2c - simplify function return logic Benson Leung <bleung@chromium.org> - 2015-10-02 18:50 +0200
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-10-02 15:50 +0200 |
| Subject | [PATCH 16/18] Input: elan_i2c - simplify function return logic |
| Message-ID | <qf8SK-4YE-27@gated-at.bofh.it> |
The invoked function already returns zero on success or a negative errno code so there is no need to open code the logic in the caller. This also fixes the following make coccicheck warning: drivers/input/mouse/elan_i2c_smbus.c:402:1-6: WARNING: end returns can be simplified Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> --- drivers/input/mouse/elan_i2c_smbus.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/input/mouse/elan_i2c_smbus.c b/drivers/input/mouse/elan_i2c_smbus.c index cb6aecbc1dc2..e5b0adfac3d0 100644 --- a/drivers/input/mouse/elan_i2c_smbus.c +++ b/drivers/input/mouse/elan_i2c_smbus.c @@ -399,11 +399,7 @@ static int elan_smbus_prepare_fw_update(struct i2c_client *client) return error; /* Reset IC */ - error = elan_smbus_iap_reset(client); - if (error) - return error; - - return 0; + return elan_smbus_iap_reset(client); } -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Benson Leung <bleung@chromium.org> |
|---|---|
| Date | 2015-10-02 18:50 +0200 |
| Message-ID | <qfbGV-zx-7@gated-at.bofh.it> |
| In reply to | #1238253 |
On Fri, Oct 2, 2015 at 6:40 AM, Javier Martinez Canillas <javier@osg.samsung.com> wrote: > The invoked function already returns zero on success or a negative > errno code so there is no need to open code the logic in the caller. > > This also fixes the following make coccicheck warning: > > drivers/input/mouse/elan_i2c_smbus.c:402:1-6: WARNING: end returns can be simplified > > Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Reviewed-by: Benson Leung <bleung@chromium.org> -- Benson Leung Software Engineer, Chrom* OS bleung@chromium.org -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web