All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: gp2ap020a00f: Fix signedness bug
@ 2022-04-14 10:45 Haowen Bai
  2022-04-14 13:47 ` Andy Shevchenko
  0 siblings, 1 reply; 10+ messages in thread
From: Haowen Bai @ 2022-04-14 10:45 UTC (permalink / raw)
  To: Jonathan Cameron, Lars-Peter Clausen; +Cc: Haowen Bai, linux-iio, linux-kernel

function gp2ap020a00f_get_thresh_reg() is unsigned but returning -EINVAL 
errcode, and thresh_reg_l is unsigned but receiving -EINVAL errcode. so 
we have to change u8 -> s8.

Signed-off-by: Haowen Bai <baihaowen@meizu.com>
---
 drivers/iio/light/gp2ap020a00f.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/iio/light/gp2ap020a00f.c b/drivers/iio/light/gp2ap020a00f.c
index b820041159f7..b0e62d3c6fa0 100644
--- a/drivers/iio/light/gp2ap020a00f.c
+++ b/drivers/iio/light/gp2ap020a00f.c
@@ -994,7 +994,7 @@ static irqreturn_t gp2ap020a00f_trigger_handler(int irq, void *data)
 	return IRQ_HANDLED;
 }
 
-static u8 gp2ap020a00f_get_thresh_reg(const struct iio_chan_spec *chan,
+static s8 gp2ap020a00f_get_thresh_reg(const struct iio_chan_spec *chan,
 					     enum iio_event_direction event_dir)
 {
 	switch (chan->type) {
@@ -1025,7 +1025,7 @@ static int gp2ap020a00f_write_event_val(struct iio_dev *indio_dev,
 	struct gp2ap020a00f_data *data = iio_priv(indio_dev);
 	bool event_en = false;
 	u8 thresh_val_id;
-	u8 thresh_reg_l;
+	s8 thresh_reg_l;
 	int err = 0;
 
 	mutex_lock(&data->lock);
@@ -1082,7 +1082,7 @@ static int gp2ap020a00f_read_event_val(struct iio_dev *indio_dev,
 				       int *val, int *val2)
 {
 	struct gp2ap020a00f_data *data = iio_priv(indio_dev);
-	u8 thresh_reg_l;
+	s8 thresh_reg_l;
 	int err = IIO_VAL_INT;
 
 	mutex_lock(&data->lock);
-- 
2.7.4


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

end of thread, other threads:[~2022-05-01 14:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-14 10:45 [PATCH] iio: gp2ap020a00f: Fix signedness bug Haowen Bai
2022-04-14 13:47 ` Andy Shevchenko
2022-04-15  1:20   ` [PATCH V2] " Haowen Bai
2022-04-15 17:52     ` Jonathan Cameron
2022-04-18  2:19       ` [PATCH V3] " Haowen Bai
2022-04-28 18:41         ` Jonathan Cameron
2022-04-29  1:36           ` [PATCH V4] " Haowen Bai
2022-05-01 15:03             ` Jonathan Cameron
2022-04-18  2:20       ` [PATCH V2] " baihaowen
2022-04-15  1:21   ` [PATCH] " baihaowen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.