projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca7162a
)
pinctrl: pinctrl-imx.c: Cleaning up if unsigned is less than zero
author
Rickard Strandqvist
<
[email protected]
>
Thu, 26 Jun 2014 11:28:16 +0000
(13:28 +0200)
committer
Linus Walleij
<
[email protected]
>
Fri, 11 Jul 2014 12:08:32 +0000
(14:08 +0200)
Remove checking if a unsigned is less than zero
This was found using a static code analysis program called cppcheck.
Signed-off-by: Rickard Strandqvist <
[email protected]
>
Signed-off-by: Linus Walleij <
[email protected]
>
drivers/pinctrl/pinctrl-imx.c
patch
|
blob
|
history
diff --git
a/drivers/pinctrl/pinctrl-imx.c
b/drivers/pinctrl/pinctrl-imx.c
index a24448e5d3996ee81a490710545626be8c83f0a2..946d594a64dddc929884d7306055afcdd63e8efc 100644
(file)
--- a/
drivers/pinctrl/pinctrl-imx.c
+++ b/
drivers/pinctrl/pinctrl-imx.c
@@
-515,7
+515,7
@@
static int imx_pinctrl_parse_functions(struct device_node *np,
/* Initialise function */
func->name = np->name;
func->num_groups = of_get_child_count(np);
- if (func->num_groups
<
= 0) {
+ if (func->num_groups
=
= 0) {
dev_err(info->dev, "no groups defined in %s\n", np->full_name);
return -EINVAL;
}