Subject: + drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked.patch 
added to -mm tree
To: [email protected],[email protected],[email protected]
From: [email protected]
Date: Mon, 01 Jul 2013 15:21:00 -0700


The patch titled
     Subject: drivers/iio/inkern.c: fix iio_convert_raw_to_processed_unlocked()
has been added to the -mm tree.  Its filename is
     drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked.patch

This patch should soon appear at
    
http://ozlabs.org/~akpm/mmots/broken-out/drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked.patch
and later at
    
http://ozlabs.org/~akpm/mmotm/broken-out/drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Alexandre Belloni <[email protected]>
Subject: drivers/iio/inkern.c: fix iio_convert_raw_to_processed_unlocked()

When reading IIO_CHAN_INFO_OFFSET, the return value of iio_channel_read() for
success will be IIO_VAL*, checking for 0 is not correct.

Signed-off-by: Alexandre Belloni <[email protected]>
Cc: Jonathan Cameron <[email protected]>
Cc: <[email protected]>    [3.10.x]
Signed-off-by: Andrew Morton <[email protected]>
---

 drivers/iio/inkern.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
drivers/iio/inkern.c~drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked
 drivers/iio/inkern.c
--- 
a/drivers/iio/inkern.c~drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked
+++ a/drivers/iio/inkern.c
@@ -451,7 +451,7 @@ static int iio_convert_raw_to_processed_
        int ret;
 
        ret = iio_channel_read(chan, &offset, NULL, IIO_CHAN_INFO_OFFSET);
-       if (ret == 0)
+       if (ret >= 0)
                raw64 += offset;
 
        scale_type = iio_channel_read(chan, &scale_val, &scale_val2,
_

Patches currently in -mm which might be from 
[email protected] are

linux-next.patch
drivers-iio-inkernc-fix-iio_convert_raw_to_processed_unlocked.patch

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

Reply via email to