mirror of https://gitee.com/openkylin/linux.git
pinctrl: pinctrl-at91.c: Cleaning up if unsigned is less than zero
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 <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
8708ebca74
commit
ca7162add9
|
@ -924,7 +924,7 @@ static int at91_pinctrl_parse_functions(struct device_node *np,
|
||||||
/* Initialise function */
|
/* Initialise function */
|
||||||
func->name = np->name;
|
func->name = np->name;
|
||||||
func->ngroups = of_get_child_count(np);
|
func->ngroups = of_get_child_count(np);
|
||||||
if (func->ngroups <= 0) {
|
if (func->ngroups == 0) {
|
||||||
dev_err(info->dev, "no groups defined\n");
|
dev_err(info->dev, "no groups defined\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue