linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iio: accel: mma8452: define unsigned return values where appropriate
@ 2016-11-21 19:53 Martin Kepplinger
  2016-11-27 11:25 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Martin Kepplinger @ 2016-11-21 19:53 UTC (permalink / raw)
  To: jic23; +Cc: knaack.h, pmeerw, linux-iio, linux-kernel, Martin Kepplinger

smatch warned:
	sval_binop_signed: invalid divide LLONG_MIN/-1

and this fixes it. It's actually good to have, in order to avoid accidental
checking for negative return values here.

Signed-off-by: Martin Kepplinger <martink@posteo.de>
---
 drivers/iio/accel/mma8452.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c
index 0e865a1..fba146f 100644
--- a/drivers/iio/accel/mma8452.c
+++ b/drivers/iio/accel/mma8452.c
@@ -248,7 +248,7 @@ static int mma8452_get_int_plus_micros_index(const int (*vals)[2], int n,
 	return -EINVAL;
 }
 
-static int mma8452_get_odr_index(struct mma8452_data *data)
+static unsigned int mma8452_get_odr_index(struct mma8452_data *data)
 {
 	return (data->ctrl_reg1 & MMA8452_CTRL_DR_MASK) >>
 			MMA8452_CTRL_DR_SHIFT;
@@ -260,7 +260,7 @@ static const int mma8452_samp_freq[8][2] = {
 };
 
 /* Datasheet table: step time "Relationship with the ODR" (sample frequency) */
-static const int mma8452_transient_time_step_us[4][8] = {
+static const unsigned int mma8452_transient_time_step_us[4][8] = {
 	{ 1250, 2500, 5000, 10000, 20000, 20000, 20000, 20000 },  /* normal */
 	{ 1250, 2500, 5000, 10000, 20000, 80000, 80000, 80000 },  /* l p l n */
 	{ 1250, 2500, 2500, 2500, 2500, 2500, 2500, 2500 },	  /* high res*/
-- 
2.1.4

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

* Re: [PATCH] iio: accel: mma8452: define unsigned return values where appropriate
  2016-11-21 19:53 [PATCH] iio: accel: mma8452: define unsigned return values where appropriate Martin Kepplinger
@ 2016-11-27 11:25 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2016-11-27 11:25 UTC (permalink / raw)
  To: Martin Kepplinger; +Cc: knaack.h, pmeerw, linux-iio, linux-kernel

On 21/11/16 19:53, Martin Kepplinger wrote:
> smatch warned:
> 	sval_binop_signed: invalid divide LLONG_MIN/-1
> 
> and this fixes it. It's actually good to have, in order to avoid accidental
> checking for negative return values here.
> 
> Signed-off-by: Martin Kepplinger <martink@posteo.de>
I'm assuming the nasty case doesn't actually occur so applied to the togreg branch of iio.git
and pushed out as testing for the autobuilders to play with it.

thanks,

Jonathan
> ---
>  drivers/iio/accel/mma8452.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c
> index 0e865a1..fba146f 100644
> --- a/drivers/iio/accel/mma8452.c
> +++ b/drivers/iio/accel/mma8452.c
> @@ -248,7 +248,7 @@ static int mma8452_get_int_plus_micros_index(const int (*vals)[2], int n,
>  	return -EINVAL;
>  }
>  
> -static int mma8452_get_odr_index(struct mma8452_data *data)
> +static unsigned int mma8452_get_odr_index(struct mma8452_data *data)
>  {
>  	return (data->ctrl_reg1 & MMA8452_CTRL_DR_MASK) >>
>  			MMA8452_CTRL_DR_SHIFT;
> @@ -260,7 +260,7 @@ static const int mma8452_samp_freq[8][2] = {
>  };
>  
>  /* Datasheet table: step time "Relationship with the ODR" (sample frequency) */
> -static const int mma8452_transient_time_step_us[4][8] = {
> +static const unsigned int mma8452_transient_time_step_us[4][8] = {
>  	{ 1250, 2500, 5000, 10000, 20000, 20000, 20000, 20000 },  /* normal */
>  	{ 1250, 2500, 5000, 10000, 20000, 80000, 80000, 80000 },  /* l p l n */
>  	{ 1250, 2500, 2500, 2500, 2500, 2500, 2500, 2500 },	  /* high res*/
> 

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

end of thread, other threads:[~2016-11-27 11:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-21 19:53 [PATCH] iio: accel: mma8452: define unsigned return values where appropriate Martin Kepplinger
2016-11-27 11:25 ` 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).