* [PATCH] iio: cm36651: Changed return value of read function
@ 2013-12-09 2:17 Beomho Seo
2013-12-14 11:17 ` Jonathan Cameron
0 siblings, 1 reply; 4+ messages in thread
From: Beomho Seo @ 2013-12-09 2:17 UTC (permalink / raw)
To: linux-iio; +Cc: Jonathan Cameron
Hello,
I have fixed cm36651 driver.
Some return value of callback have been changed to IIO_VAL_INT.
If not IIO_VAL_INT, driver will print wrong value(*_read_int_time) or not print(*_read_prox_thresh).
Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
---
drivers/iio/light/cm36651.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/iio/light/cm36651.c b/drivers/iio/light/cm36651.c
index 21df571..0206eab 100644
--- a/drivers/iio/light/cm36651.c
+++ b/drivers/iio/light/cm36651.c
@@ -387,7 +387,7 @@ static int cm36651_read_int_time(struct cm36651_data *cm36651,
return -EINVAL;
}
- return IIO_VAL_INT_PLUS_MICRO;
+ return IIO_VAL_INT;
}
static int cm36651_write_int_time(struct cm36651_data *cm36651,
@@ -494,7 +494,7 @@ static int cm36651_read_prox_thresh(struct iio_dev *indio_dev,
*val = cm36651->ps_ctrl_regs[CM36651_PS_THD];
- return 0;
+ return IIO_VAL_INT;
}
static int cm36651_write_prox_thresh(struct iio_dev *indio_dev,
--
1.7.9.5
--
Best Regards,
Beomho Seo, Assistant Engineer
System S/W Lab., Software Center, Samsung Electronics
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] iio: cm36651: Changed return value of read function
2013-12-09 2:17 [PATCH] iio: cm36651: Changed return value of read function Beomho Seo
@ 2013-12-14 11:17 ` Jonathan Cameron
2013-12-15 13:04 ` Lars-Peter Clausen
0 siblings, 1 reply; 4+ messages in thread
From: Jonathan Cameron @ 2013-12-14 11:17 UTC (permalink / raw)
To: Beomho Seo, linux-iio
On 12/09/13 02:17, Beomho Seo wrote:
> Hello,
>
> I have fixed cm36651 driver.
> Some return value of callback have been changed to IIO_VAL_INT.
> If not IIO_VAL_INT, driver will print wrong value(*_read_int_time) or not print(*_read_prox_thresh).
>
> Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
Applied to the fixes-togreg branch of iio.git
This is going to cause a merge conflict with the reworking of the event
handling in the togreg branch, but the solution is simple so shouldn't
cause any problems (hopefully I'll remember to metion it when I send
the pull requests!)
> ---
> drivers/iio/light/cm36651.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/light/cm36651.c b/drivers/iio/light/cm36651.c
> index 21df571..0206eab 100644
> --- a/drivers/iio/light/cm36651.c
> +++ b/drivers/iio/light/cm36651.c
> @@ -387,7 +387,7 @@ static int cm36651_read_int_time(struct cm36651_data *cm36651,
> return -EINVAL;
> }
>
> - return IIO_VAL_INT_PLUS_MICRO;
> + return IIO_VAL_INT;
> }
>
> static int cm36651_write_int_time(struct cm36651_data *cm36651,
> @@ -494,7 +494,7 @@ static int cm36651_read_prox_thresh(struct iio_dev *indio_dev,
>
> *val = cm36651->ps_ctrl_regs[CM36651_PS_THD];
>
> - return 0;
> + return IIO_VAL_INT;
> }
>
> static int cm36651_write_prox_thresh(struct iio_dev *indio_dev,
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iio: cm36651: Changed return value of read function
2013-12-14 11:17 ` Jonathan Cameron
@ 2013-12-15 13:04 ` Lars-Peter Clausen
2013-12-15 21:03 ` Jonathan Cameron
0 siblings, 1 reply; 4+ messages in thread
From: Lars-Peter Clausen @ 2013-12-15 13:04 UTC (permalink / raw)
To: Jonathan Cameron; +Cc: Beomho Seo, linux-iio
On 12/14/2013 12:17 PM, Jonathan Cameron wrote:
> On 12/09/13 02:17, Beomho Seo wrote:
>> Hello,
>>
>> I have fixed cm36651 driver.
>> Some return value of callback have been changed to IIO_VAL_INT.
>> If not IIO_VAL_INT, driver will print wrong value(*_read_int_time) or not print(*_read_prox_thresh).
>>
>> Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
> Applied to the fixes-togreg branch of iio.git
>
> This is going to cause a merge conflict with the reworking of the event
> handling in the togreg branch, but the solution is simple so shouldn't
> cause any problems (hopefully I'll remember to metion it when I send
> the pull requests!)
Actually the patch should be split into two parts. The first hunk is a fix
for the a problem which is already present in the current (as in Linus tree)
version of the driver. While the problem, which is fixed in the second hunk,
is something I introduced with the conversion to the new style event
interface. So only the first part should go to fixes-togreg and the second
to togreg. I don't think there will be any conflicts that way.
- Lars
>> ---
>> drivers/iio/light/cm36651.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/iio/light/cm36651.c b/drivers/iio/light/cm36651.c
>> index 21df571..0206eab 100644
>> --- a/drivers/iio/light/cm36651.c
>> +++ b/drivers/iio/light/cm36651.c
>> @@ -387,7 +387,7 @@ static int cm36651_read_int_time(struct cm36651_data *cm36651,
>> return -EINVAL;
>> }
>>
>> - return IIO_VAL_INT_PLUS_MICRO;
>> + return IIO_VAL_INT;
>> }
>>
>> static int cm36651_write_int_time(struct cm36651_data *cm36651,
>> @@ -494,7 +494,7 @@ static int cm36651_read_prox_thresh(struct iio_dev *indio_dev,
>>
>> *val = cm36651->ps_ctrl_regs[CM36651_PS_THD];
>>
>> - return 0;
>> + return IIO_VAL_INT;
>> }
>>
>> static int cm36651_write_prox_thresh(struct iio_dev *indio_dev,
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iio: cm36651: Changed return value of read function
2013-12-15 13:04 ` Lars-Peter Clausen
@ 2013-12-15 21:03 ` Jonathan Cameron
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2013-12-15 21:03 UTC (permalink / raw)
To: Lars-Peter Clausen; +Cc: Beomho Seo, linux-iio
On 12/15/13 13:04, Lars-Peter Clausen wrote:
> On 12/14/2013 12:17 PM, Jonathan Cameron wrote:
>> On 12/09/13 02:17, Beomho Seo wrote:
>>> Hello,
>>>
>>> I have fixed cm36651 driver.
>>> Some return value of callback have been changed to IIO_VAL_INT.
>>> If not IIO_VAL_INT, driver will print wrong value(*_read_int_time) or not print(*_read_prox_thresh).
>>>
>>> Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
>> Applied to the fixes-togreg branch of iio.git
>>
>> This is going to cause a merge conflict with the reworking of the event
>> handling in the togreg branch, but the solution is simple so shouldn't
>> cause any problems (hopefully I'll remember to metion it when I send
>> the pull requests!)
>
> Actually the patch should be split into two parts. The first hunk is a fix
> for the a problem which is already present in the current (as in Linus tree)
> version of the driver. While the problem, which is fixed in the second hunk,
> is something I introduced with the conversion to the new style event
> interface. So only the first part should go to fixes-togreg and the second
> to togreg. I don't think there will be any conflicts that way.
>
Ah, good point.
Anyhow, I've switched the original patch for one that only does the first change. Will
deal with the second one when I have a bored moment.
Jonathan
> - Lars
>
>>> ---
>>> drivers/iio/light/cm36651.c | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/iio/light/cm36651.c b/drivers/iio/light/cm36651.c
>>> index 21df571..0206eab 100644
>>> --- a/drivers/iio/light/cm36651.c
>>> +++ b/drivers/iio/light/cm36651.c
>>> @@ -387,7 +387,7 @@ static int cm36651_read_int_time(struct cm36651_data *cm36651,
>>> return -EINVAL;
>>> }
>>>
>>> - return IIO_VAL_INT_PLUS_MICRO;
>>> + return IIO_VAL_INT;
>>> }
>>>
>>> static int cm36651_write_int_time(struct cm36651_data *cm36651,
>>> @@ -494,7 +494,7 @@ static int cm36651_read_prox_thresh(struct iio_dev *indio_dev,
>>>
>>> *val = cm36651->ps_ctrl_regs[CM36651_PS_THD];
>>>
>>> - return 0;
>>> + return IIO_VAL_INT;
>>> }
>>>
>>> static int cm36651_write_prox_thresh(struct iio_dev *indio_dev,
>>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-12-15 21:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-09 2:17 [PATCH] iio: cm36651: Changed return value of read function Beomho Seo
2013-12-14 11:17 ` Jonathan Cameron
2013-12-15 13:04 ` Lars-Peter Clausen
2013-12-15 21:03 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).