]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
pinctrl: aspeed: Fix confusing types in return value
authorJoel Stanley <joel@jms.id.au>
Thu, 19 Jan 2023 23:18:56 +0000 (09:48 +1030)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Feb 2023 11:47:17 +0000 (12:47 +0100)
[ Upstream commit 287a344a11f1ebd31055cf9b22c88d7005f108d7 ]

The function signature is int, but we return a bool. Instead return a
negative errno as the kerneldoc suggests.

Fixes: 4d3d0e4272d8 ("pinctrl: Add core support for Aspeed SoCs")
Signed-off-by: Joel Stanley <joel@jms.id.au>
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Link: https://lore.kernel.org/r/20230119231856.52014-1-joel@jms.id.au
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/pinctrl/aspeed/pinctrl-aspeed.c

index 8dec302dc067a88be04cc5c5ab0cc05f885f4015..a95289b5e6bf201fdbd7e8762a7b6c1b0a13adde 100644 (file)
@@ -295,7 +295,7 @@ static int aspeed_disable_sig(const struct aspeed_sig_expr **exprs,
        int ret = 0;
 
        if (!exprs)
-               return true;
+               return -EINVAL;
 
        while (*exprs && !ret) {
                ret = aspeed_sig_expr_disable(*exprs, maps);