linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] staging: iio: trigger: iio-trig-periodic-rtc: Change frequency type to unsigned int
@ 2015-02-08 18:22 Rickard Strandqvist
  2015-02-21 18:11 ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Rickard Strandqvist @ 2015-02-08 18:22 UTC (permalink / raw)
  To: Jonathan Cameron, Hartmut Knaack
  Cc: Rickard Strandqvist, Lars-Peter Clausen, Peter Meerwald,
	Greg Kroah-Hartman, Joel Porquet, Darshana Padmadas,
	Catalina Mocanu, Wolfram Sang, linux-iio, devel, linux-kernel

Change struct iio_prtc_trigger_info frequency
type from int to unsigned int.
Since it is always treated as such in the driver
so they type should probably reflect this.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
---
 drivers/staging/iio/trigger/iio-trig-periodic-rtc.c |   12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
index a24caf7..89df1d3 100644
--- a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
+++ b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
@@ -24,7 +24,7 @@ static DEFINE_MUTEX(iio_prtc_trigger_list_lock);
 
 struct iio_prtc_trigger_info {
 	struct rtc_device *rtc;
-	int frequency;
+	unsigned int frequency;
 	struct rtc_task task;
 	bool state;
 };
@@ -36,7 +36,7 @@ static int iio_trig_periodic_rtc_set_state(struct iio_trigger *trig, bool state)
 
 	if (trig_info->frequency == 0 && state)
 		return -EINVAL;
-	dev_dbg(&trig_info->rtc->dev, "trigger frequency is %d\n",
+	dev_dbg(&trig_info->rtc->dev, "trigger frequency is %u\n",
 			trig_info->frequency);
 	ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, state);
 	if (ret == 0)
@@ -62,10 +62,10 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
 {
 	struct iio_trigger *trig = to_iio_trigger(dev);
 	struct iio_prtc_trigger_info *trig_info = iio_trigger_get_drvdata(trig);
-	int val;
+	unsigned int val;
 	int ret;
 
-	ret = kstrtoint(buf, 10, &val);
+	ret = kstrtouint(buf, 10, &val);
 	if (ret)
 		goto error_ret;
 
@@ -74,10 +74,8 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
 		if (ret == 0 && trig_info->state && trig_info->frequency == 0)
 			ret = rtc_irq_set_state(trig_info->rtc,
 						&trig_info->task, 1);
-	} else if (val == 0) {
-		ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
 	} else
-		ret = -EINVAL;
+		ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
 	if (ret)
 		goto error_ret;
 
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] staging: iio: trigger: iio-trig-periodic-rtc: Change frequency type to unsigned int
  2015-02-08 18:22 [PATCH v2] staging: iio: trigger: iio-trig-periodic-rtc: Change frequency type to unsigned int Rickard Strandqvist
@ 2015-02-21 18:11 ` Jonathan Cameron
  2015-02-21 18:15   ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2015-02-21 18:11 UTC (permalink / raw)
  To: Rickard Strandqvist, Hartmut Knaack
  Cc: Lars-Peter Clausen, Peter Meerwald, Greg Kroah-Hartman,
	Joel Porquet, Darshana Padmadas, Catalina Mocanu, Wolfram Sang,
	linux-iio, devel, linux-kernel

On 08/02/15 18:22, Rickard Strandqvist wrote:
> Change struct iio_prtc_trigger_info frequency
> type from int to unsigned int.
> Since it is always treated as such in the driver
> so they type should probably reflect this.
> 
> Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
The only argument against this is that the rtc_irq_set_freq function takes
a signed int. Arguably that shouldn't perhaps, but whilst it does we should
probably track it's type to avoid confusion.

Jonathan
> ---
>  drivers/staging/iio/trigger/iio-trig-periodic-rtc.c |   12 +++++-------
>  1 file changed, 5 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
> index a24caf7..89df1d3 100644
> --- a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
> +++ b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
> @@ -24,7 +24,7 @@ static DEFINE_MUTEX(iio_prtc_trigger_list_lock);
>  
>  struct iio_prtc_trigger_info {
>  	struct rtc_device *rtc;
> -	int frequency;
> +	unsigned int frequency;
>  	struct rtc_task task;
>  	bool state;
>  };
> @@ -36,7 +36,7 @@ static int iio_trig_periodic_rtc_set_state(struct iio_trigger *trig, bool state)
>  
>  	if (trig_info->frequency == 0 && state)
>  		return -EINVAL;
> -	dev_dbg(&trig_info->rtc->dev, "trigger frequency is %d\n",
> +	dev_dbg(&trig_info->rtc->dev, "trigger frequency is %u\n",
>  			trig_info->frequency);
>  	ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, state);
>  	if (ret == 0)
> @@ -62,10 +62,10 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
>  {
>  	struct iio_trigger *trig = to_iio_trigger(dev);
>  	struct iio_prtc_trigger_info *trig_info = iio_trigger_get_drvdata(trig);
> -	int val;
> +	unsigned int val;
>  	int ret;
>  
> -	ret = kstrtoint(buf, 10, &val);
> +	ret = kstrtouint(buf, 10, &val);
>  	if (ret)
>  		goto error_ret;
>  
> @@ -74,10 +74,8 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
>  		if (ret == 0 && trig_info->state && trig_info->frequency == 0)
>  			ret = rtc_irq_set_state(trig_info->rtc,
>  						&trig_info->task, 1);
> -	} else if (val == 0) {
> -		ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
>  	} else
> -		ret = -EINVAL;
> +		ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
>  	if (ret)
>  		goto error_ret;
>  
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] staging: iio: trigger: iio-trig-periodic-rtc: Change frequency type to unsigned int
  2015-02-21 18:11 ` Jonathan Cameron
@ 2015-02-21 18:15   ` Jonathan Cameron
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2015-02-21 18:15 UTC (permalink / raw)
  To: Rickard Strandqvist, Hartmut Knaack
  Cc: Lars-Peter Clausen, Peter Meerwald, Greg Kroah-Hartman,
	Joel Porquet, Darshana Padmadas, Catalina Mocanu, Wolfram Sang,
	linux-iio, devel, linux-kernel

On 21/02/15 18:11, Jonathan Cameron wrote:
> On 08/02/15 18:22, Rickard Strandqvist wrote:
>> Change struct iio_prtc_trigger_info frequency
>> type from int to unsigned int.
>> Since it is always treated as such in the driver
>> so they type should probably reflect this.
>>
>> Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
> The only argument against this is that the rtc_irq_set_freq function takes
> a signed int. Arguably that shouldn't perhaps, but whilst it does we should
> probably track it's type to avoid confusion.
hmm. Dug a bit deeper. drivers/rtc/interface.c states that it must be positive.
I'm guessing it is only signed for historical reasons.
So I will take this patch as it stands.

Applied to the togreg branch iio.git - initially to be pushed out as
testing for the autobuilders to play.

Jonathan
> 
> Jonathan
>> ---
>>  drivers/staging/iio/trigger/iio-trig-periodic-rtc.c |   12 +++++-------
>>  1 file changed, 5 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
>> index a24caf7..89df1d3 100644
>> --- a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
>> +++ b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
>> @@ -24,7 +24,7 @@ static DEFINE_MUTEX(iio_prtc_trigger_list_lock);
>>  
>>  struct iio_prtc_trigger_info {
>>  	struct rtc_device *rtc;
>> -	int frequency;
>> +	unsigned int frequency;
>>  	struct rtc_task task;
>>  	bool state;
>>  };
>> @@ -36,7 +36,7 @@ static int iio_trig_periodic_rtc_set_state(struct iio_trigger *trig, bool state)
>>  
>>  	if (trig_info->frequency == 0 && state)
>>  		return -EINVAL;
>> -	dev_dbg(&trig_info->rtc->dev, "trigger frequency is %d\n",
>> +	dev_dbg(&trig_info->rtc->dev, "trigger frequency is %u\n",
>>  			trig_info->frequency);
>>  	ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, state);
>>  	if (ret == 0)
>> @@ -62,10 +62,10 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
>>  {
>>  	struct iio_trigger *trig = to_iio_trigger(dev);
>>  	struct iio_prtc_trigger_info *trig_info = iio_trigger_get_drvdata(trig);
>> -	int val;
>> +	unsigned int val;
>>  	int ret;
>>  
>> -	ret = kstrtoint(buf, 10, &val);
>> +	ret = kstrtouint(buf, 10, &val);
>>  	if (ret)
>>  		goto error_ret;
>>  
>> @@ -74,10 +74,8 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
>>  		if (ret == 0 && trig_info->state && trig_info->frequency == 0)
>>  			ret = rtc_irq_set_state(trig_info->rtc,
>>  						&trig_info->task, 1);
>> -	} else if (val == 0) {
>> -		ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
>>  	} else
>> -		ret = -EINVAL;
>> +		ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
>>  	if (ret)
>>  		goto error_ret;
>>  
>>
> 
> --
> 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] 3+ messages in thread

end of thread, other threads:[~2015-02-21 18:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-08 18:22 [PATCH v2] staging: iio: trigger: iio-trig-periodic-rtc: Change frequency type to unsigned int Rickard Strandqvist
2015-02-21 18:11 ` Jonathan Cameron
2015-02-21 18:15   ` 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).