From: Jonathan Cameron <jic23@cam.ac.uk>
To: Guenter Roeck <guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
Cc: Jonathan Cameron <jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org>,
fabien.marteau@armadeus.com,
"linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
LM Sensors <lm-sensors@lm-sensors.org>
Subject: Re: [PATCH 1/2] staging:iio:adc: as1531 driver initial conversion from hwmon submission.
Date: Wed, 18 May 2011 17:12:19 +0100 [thread overview]
Message-ID: <4DD3EFE3.9070201@cam.ac.uk> (raw)
In-Reply-To: <20110518160202.GC11280@ericsson.com>
On 05/18/11 17:02, Guenter Roeck wrote:
> On Wed, May 18, 2011 at 11:39:31AM -0400, Jonathan Cameron wrote:
>> From: Fabien Marteau <fabien.marteau-d2DlULPkwbNWk0Htik3J/w@public.gmane.org>
>>
>> Signed-off-by: Jonathan Cameron <jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org>
>
> Hi Jonathan,
>
> nice job. Thanks a lot for the effort.
>
> [ ... ]
>
>> +static int as1531_read_raw(struct iio_dev *indio_dev,
>> + struct iio_chan_spec const *chan,
>> + int *val,
>> + int *val2,
>> + long m)
>> +{
>> +
> Extra blank line
>
>> + int status = 0;
>> + int ret_value = 0;
>> + struct as1531_state *st = iio_priv(indio_dev);
>
> Move it to here, maybe ?
>
>> + if (mutex_lock_interruptible(&st->lock))
>> + return -ERESTARTSYS;
>> +
>> + status = as1531_message(st->spi,
>> + AS1531_START_BIT | chan->address |
>> + AS1531_RANGE_0_TO_VREF | AS1531_MODE_COM |
>> + AS1531_POWER_NORMAL,
>> + &ret_value);
>> + mutex_unlock(&st->lock);
>> + if (status < 0)
>> + goto out;
>> +
>> + *val = ret_value*2500/4096;
>> +
>> + return IIO_VAL_INT;
>> +out:
>> + mutex_unlock(&st->lock);
>
> Mutex was unlocked above already. Maybe just return status above ?
Hmm.. Sometimes working without testing shows just how bad first versions
of code really can be ;)
Thanks for the other review as well. Have fixed up both.
Thanks.
Jonathan
next prev parent reply other threads:[~2011-05-18 16:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <4DD26311.7070905@armadeus.com>
2011-05-18 15:39 ` [PATCH 0/2] staging:iio:adc:as1531 driver port from hwmon driver Jonathan Cameron
2011-05-18 16:16 ` [PATCH V2 " Jonathan Cameron
2011-05-18 17:01 ` Fabien Marteau
2011-05-18 16:16 ` [PATCH 1/2] staging:iio:adc: as1531 driver initial conversion from hwmon submission Jonathan Cameron
2011-05-18 16:37 ` Guenter Roeck
2011-05-18 16:17 ` [PATCH 2/2] staging:iio:adc:as1351 general cleanup and conversion to standard functions Jonathan Cameron
2011-05-18 16:35 ` Guenter Roeck
2011-05-19 8:42 ` Jonathan Cameron
2011-05-18 15:39 ` [PATCH 1/2] staging:iio:adc: as1531 driver initial conversion from hwmon submission Jonathan Cameron
2011-05-18 16:02 ` Guenter Roeck
2011-05-18 16:12 ` Jonathan Cameron [this message]
2011-05-18 15:39 ` [PATCH 2/2] staging:iio:adc:as1351 general cleanup and conversion to standard functions Jonathan Cameron
2011-05-18 15:57 ` Guenter Roeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4DD3EFE3.9070201@cam.ac.uk \
--to=jic23@cam.ac.uk \
--cc=fabien.marteau@armadeus.com \
--cc=guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org \
--cc=jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org \
--cc=linux-iio@vger.kernel.org \
--cc=lm-sensors@lm-sensors.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox