[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20110309155841.52847f15.akpm@linux-foundation.org>
Date: Wed, 9 Mar 2011 15:58:41 -0800
From: Andrew Morton <akpm@...ux-foundation.org>
To: Axel Lin <axel.lin@...il.com>
Cc: linux-kernel@...r.kernel.org,
Kalhan Trisal <kalhan.trisal@...el.com>,
Alan Cox <alan@...ux.intel.com>,
Alan Cox <alan@...rguk.ukuu.org.uk>
Subject: Re: [PATCH] misc: hmc6352: fix wrong return value checking for
i2c_master_recv
On Wed, 09 Mar 2011 16:41:56 +0800
Axel Lin <axel.lin@...il.com> wrote:
> i2c_master_recv() returns negative errno, or else the number of bytes read.
> Thus i2c_master_recv(client, i2c_data, 2) returns 2 instead of 1 in success case.
>
> Signed-off-by: Axel Lin <axel.lin@...il.com>
> ---
> drivers/misc/hmc6352.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/misc/hmc6352.c b/drivers/misc/hmc6352.c
> index 234bfca..3afc11e 100644
> --- a/drivers/misc/hmc6352.c
> +++ b/drivers/misc/hmc6352.c
> @@ -86,7 +86,7 @@ static ssize_t compass_heading_data_show(struct device *dev,
> msleep(10); /* sending 'A' cmd we need to wait for 7-10 millisecs */
> ret = i2c_master_recv(client, i2c_data, 2);
> mutex_unlock(&compass_mutex);
> - if (ret != 1) {
> + if (ret < 0) {
> dev_warn(dev, "i2c read data cmd failed\n");
> return ret;
> }
The problem seems real but the fix won't work:
--- a/drivers/misc/hmc6352.c~drivers-misc-hmc6352c-fix-wrong-return-value-checking-for-i2c_master_recv-fix
+++ a/drivers/misc/hmc6352.c
@@ -75,7 +75,7 @@ static ssize_t compass_heading_data_show
{
struct i2c_client *client = to_i2c_client(dev);
unsigned char i2c_data[2];
- unsigned int ret;
+ int ret;
mutex_lock(&compass_mutex);
ret = compass_command(client, 'A');
I also wonder if this bit is correct:
: static ssize_t compass_heading_data_show(struct device *dev,
: struct device_attribute *attr, char *buf)
: {
: struct i2c_client *client = to_i2c_client(dev);
: unsigned char i2c_data[2];
: int ret;
:
: mutex_lock(&compass_mutex);
: ret = compass_command(client, 'A');
: if (ret != 1) {
: mutex_unlock(&compass_mutex);
: return ret;
: }
If compass_command() returns zero (short write on i2c?!?!?) then did we
do the right thing?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists