summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Goodbody <[email protected]>2025-08-07 10:16:55 +0100
committerTom Rini <[email protected]>2025-08-19 11:25:10 -0600
commite416d165723c56658b4a688e790cdcd968c6cfc9 (patch)
tree578dc91058c342b578726ee36757ac39f1970ba7
parentfedbb7a338286faf2fc897e136b0b9c6506fcfc4 (diff)
pinctrl: nexell: Cannot test unsigned to be negative
In s5pxx18_pinctrl_set_state testing count to be negative will always fail as count is unsigned despite receiving the return value of a function that returns an int. Change count and idx to be of type int to allow the test to work as expected and remove the need for any implicit casts. Also change pin to be u32 which is what all called functions expect. This issue was found by Smatch. Signed-off-by: Andrew Goodbody <[email protected]>
-rw-r--r--drivers/pinctrl/nexell/pinctrl-s5pxx18.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pinctrl/nexell/pinctrl-s5pxx18.c b/drivers/pinctrl/nexell/pinctrl-s5pxx18.c
index e7d0994f29e..a6ae5764fbc 100644
--- a/drivers/pinctrl/nexell/pinctrl-s5pxx18.c
+++ b/drivers/pinctrl/nexell/pinctrl-s5pxx18.c
@@ -130,7 +130,8 @@ static int is_pin_alive(const char *name)
static int s5pxx18_pinctrl_set_state(struct udevice *dev,
struct udevice *config)
{
- unsigned int count, idx, pin;
+ u32 pin;
+ int count, idx;
unsigned int pinfunc, pinpud, pindrv;
unsigned long reg;
const char *name;