* [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs
@ 2021-05-14 13:10 Dan Carpenter
2021-05-14 13:10 ` [PATCH 2/2] iio: light: tsl2591: delete a stray tab Dan Carpenter
2021-05-16 9:30 ` [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs Jonathan Cameron
0 siblings, 2 replies; 3+ messages in thread
From: Dan Carpenter @ 2021-05-14 13:10 UTC (permalink / raw)
To: Jonathan Cameron
Cc: Lars-Peter Clausen, Joe Sandom, Andy Shevchenko, linux-iio,
kernel-janitors
These variables need to be int for the error handling to work.
Fixes: f053d4e748ce ("iio: light: Added AMS tsl2591 driver implementation")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
drivers/iio/light/tsl2591.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/iio/light/tsl2591.c b/drivers/iio/light/tsl2591.c
index 2bdae388ff01..26e3cb6c4ff8 100644
--- a/drivers/iio/light/tsl2591.c
+++ b/drivers/iio/light/tsl2591.c
@@ -213,7 +213,7 @@ static int tsl2591_gain_to_multiplier(const u8 als_gain)
}
}
-static u8 tsl2591_multiplier_to_gain(const u32 multiplier)
+static int tsl2591_multiplier_to_gain(const u32 multiplier)
{
switch (multiplier) {
case TSL2591_CTRL_ALS_LOW_GAIN_MULTIPLIER:
@@ -783,8 +783,8 @@ static int tsl2591_write_raw(struct iio_dev *indio_dev,
int val, int val2, long mask)
{
struct tsl2591_chip *chip = iio_priv(indio_dev);
- u32 int_time;
- u8 gain;
+ int int_time;
+ int gain;
int ret;
mutex_lock(&chip->als_mutex);
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 2/2] iio: light: tsl2591: delete a stray tab
2021-05-14 13:10 [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs Dan Carpenter
@ 2021-05-14 13:10 ` Dan Carpenter
2021-05-16 9:30 ` [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs Jonathan Cameron
1 sibling, 0 replies; 3+ messages in thread
From: Dan Carpenter @ 2021-05-14 13:10 UTC (permalink / raw)
To: Jonathan Cameron
Cc: Lars-Peter Clausen, Joe Sandom, Andy Shevchenko, linux-iio,
linux-kernel, kernel-janitors
This return statement is indented one more tab than it should be.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
drivers/iio/light/tsl2591.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/iio/light/tsl2591.c b/drivers/iio/light/tsl2591.c
index 26e3cb6c4ff8..39e68d0c9d6a 100644
--- a/drivers/iio/light/tsl2591.c
+++ b/drivers/iio/light/tsl2591.c
@@ -451,7 +451,7 @@ static int tsl2591_read_channel_data(struct iio_dev *indio_dev,
sizeof(als_data), als_data);
if (ret < 0) {
dev_err(&client->dev, "Failed to read data bytes");
- return ret;
+ return ret;
}
als_ch0 = get_unaligned_le16(&als_data[0]);
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs
2021-05-14 13:10 [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs Dan Carpenter
2021-05-14 13:10 ` [PATCH 2/2] iio: light: tsl2591: delete a stray tab Dan Carpenter
@ 2021-05-16 9:30 ` Jonathan Cameron
1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2021-05-16 9:30 UTC (permalink / raw)
To: Dan Carpenter
Cc: Lars-Peter Clausen, Joe Sandom, Andy Shevchenko, linux-iio,
kernel-janitors
On Fri, 14 May 2021 16:10:07 +0300
Dan Carpenter <dan.carpenter@oracle.com> wrote:
> These variables need to be int for the error handling to work.
>
> Fixes: f053d4e748ce ("iio: light: Added AMS tsl2591 driver implementation")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Both applied to the togreg branch of iio.git and pushed out as testing for
the autobuilders to poke at it.
As such, there is still a bit of time if anyone else wants to review
these / give tags etc, before I push it out as a non rebasing branch.
thanks,
Jonathan
> ---
> drivers/iio/light/tsl2591.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/iio/light/tsl2591.c b/drivers/iio/light/tsl2591.c
> index 2bdae388ff01..26e3cb6c4ff8 100644
> --- a/drivers/iio/light/tsl2591.c
> +++ b/drivers/iio/light/tsl2591.c
> @@ -213,7 +213,7 @@ static int tsl2591_gain_to_multiplier(const u8 als_gain)
> }
> }
>
> -static u8 tsl2591_multiplier_to_gain(const u32 multiplier)
> +static int tsl2591_multiplier_to_gain(const u32 multiplier)
> {
> switch (multiplier) {
> case TSL2591_CTRL_ALS_LOW_GAIN_MULTIPLIER:
> @@ -783,8 +783,8 @@ static int tsl2591_write_raw(struct iio_dev *indio_dev,
> int val, int val2, long mask)
> {
> struct tsl2591_chip *chip = iio_priv(indio_dev);
> - u32 int_time;
> - u8 gain;
> + int int_time;
> + int gain;
> int ret;
>
> mutex_lock(&chip->als_mutex);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-16 9:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-14 13:10 [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs Dan Carpenter
2021-05-14 13:10 ` [PATCH 2/2] iio: light: tsl2591: delete a stray tab Dan Carpenter
2021-05-16 9:30 ` [PATCH 1/2] iio: light: tsl2591: fix some signedness bugs Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox