2020-03-28 06:53:48

by Rohit Sarkar

[permalink] [raw]
Subject: [PATCH] iio: temperature: ltc2983: remove redundant comparison to bool

Remove redundant comparison to a boolean variable.

Fixes coccinelle warning:
drivers/iio/temperature//ltc2983.c:393:20-32: WARNING: Comparison to bool
drivers/iio/temperature//ltc2983.c:394:20-32: WARNING: Comparison to bool

Signed-off-by: Rohit Sarkar <[email protected]>
---
drivers/iio/temperature/ltc2983.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/temperature/ltc2983.c b/drivers/iio/temperature/ltc2983.c
index d39c0d6b77f1..8976e8d59826 100644
--- a/drivers/iio/temperature/ltc2983.c
+++ b/drivers/iio/temperature/ltc2983.c
@@ -390,8 +390,8 @@ static struct ltc2983_custom_sensor *__ltc2983_custom_sensor_new(
* For custom steinhart, the full u32 is taken. For all the others
* the MSB is discarded.
*/
- const u8 n_size = (is_steinhart == true) ? 4 : 3;
- const u8 e_size = (is_steinhart == true) ? sizeof(u32) : sizeof(u64);
+ const u8 n_size = is_steinhart ? 4 : 3;
+ const u8 e_size = is_steinhart ? sizeof(u32) : sizeof(u64);

n_entries = of_property_count_elems_of_size(np, propname, e_size);
/* n_entries must be an even number */
--
2.23.0.385.gbc12974a89


2020-03-28 09:44:57

by Nuno Sa

[permalink] [raw]
Subject: RE: [PATCH] iio: temperature: ltc2983: remove redundant comparison to bool



> -----Original Message-----
> From: Rohit Sarkar <[email protected]>
> Sent: Samstag, 28. M?rz 2020 07:53
> To: [email protected]
> Cc: Sa, Nuno <[email protected]>; [email protected];
> [email protected]; Hartmut Knaack <[email protected]>; Lars-Peter Clausen
> <[email protected]>; Peter Meerwald-Stadler <[email protected]>; linux-
> [email protected]; [email protected]; Bogdan, Dragos
> <[email protected]>
> Subject: [PATCH] iio: temperature: ltc2983: remove redundant comparison to
> bool
>
>
> Remove redundant comparison to a boolean variable.
>
> Fixes coccinelle warning:
> drivers/iio/temperature//ltc2983.c:393:20-32: WARNING: Comparison to
> bool
> drivers/iio/temperature//ltc2983.c:394:20-32: WARNING: Comparison to
> bool
>
> Signed-off-by: Rohit Sarkar <[email protected]>
> ---
> drivers/iio/temperature/ltc2983.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/temperature/ltc2983.c
> b/drivers/iio/temperature/ltc2983.c
> index d39c0d6b77f1..8976e8d59826 100644
> --- a/drivers/iio/temperature/ltc2983.c
> +++ b/drivers/iio/temperature/ltc2983.c
> @@ -390,8 +390,8 @@ static struct ltc2983_custom_sensor
> *__ltc2983_custom_sensor_new(
> * For custom steinhart, the full u32 is taken. For all the others
> * the MSB is discarded.
> */
> - const u8 n_size = (is_steinhart == true) ? 4 : 3;
> - const u8 e_size = (is_steinhart == true) ? sizeof(u32) : sizeof(u64);
> + const u8 n_size = is_steinhart ? 4 : 3;
> + const u8 e_size = is_steinhart ? sizeof(u32) : sizeof(u64);
>
> n_entries = of_property_count_elems_of_size(np, propname, e_size);
> /* n_entries must be an even number */
> --

Acked-by: Nuno S? <[email protected]>

Thanks,
Nuno S?

2020-03-28 17:56:01

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH] iio: temperature: ltc2983: remove redundant comparison to bool

On Sat, 28 Mar 2020 09:43:58 +0000
"Sa, Nuno" <[email protected]> wrote:

> > -----Original Message-----
> > From: Rohit Sarkar <[email protected]>
> > Sent: Samstag, 28. März 2020 07:53
> > To: [email protected]
> > Cc: Sa, Nuno <[email protected]>; [email protected];
> > [email protected]; Hartmut Knaack <[email protected]>; Lars-Peter Clausen
> > <[email protected]>; Peter Meerwald-Stadler <[email protected]>; linux-
> > [email protected]; [email protected]; Bogdan, Dragos
> > <[email protected]>
> > Subject: [PATCH] iio: temperature: ltc2983: remove redundant comparison to
> > bool
> >
> >
> > Remove redundant comparison to a boolean variable.
> >
> > Fixes coccinelle warning:
> > drivers/iio/temperature//ltc2983.c:393:20-32: WARNING: Comparison to
> > bool
> > drivers/iio/temperature//ltc2983.c:394:20-32: WARNING: Comparison to
> > bool
> >
> > Signed-off-by: Rohit Sarkar <[email protected]>
> > ---
> > drivers/iio/temperature/ltc2983.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/iio/temperature/ltc2983.c
> > b/drivers/iio/temperature/ltc2983.c
> > index d39c0d6b77f1..8976e8d59826 100644
> > --- a/drivers/iio/temperature/ltc2983.c
> > +++ b/drivers/iio/temperature/ltc2983.c
> > @@ -390,8 +390,8 @@ static struct ltc2983_custom_sensor
> > *__ltc2983_custom_sensor_new(
> > * For custom steinhart, the full u32 is taken. For all the others
> > * the MSB is discarded.
> > */
> > - const u8 n_size = (is_steinhart == true) ? 4 : 3;
> > - const u8 e_size = (is_steinhart == true) ? sizeof(u32) : sizeof(u64);
> > + const u8 n_size = is_steinhart ? 4 : 3;
> > + const u8 e_size = is_steinhart ? sizeof(u32) : sizeof(u64);
> >
> > n_entries = of_property_count_elems_of_size(np, propname, e_size);
> > /* n_entries must be an even number */
> > --
>
> Acked-by: Nuno Sá <[email protected]>
>

Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to play with it.

Thanks,

Jonathan


> Thanks,
> Nuno Sá
>