pinctrl: don't fall back to pinctrl_select_state_simple()
authorMichael Walle <michael@walle.cc>
Wed, 18 Jan 2023 12:12:22 +0000 (13:12 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 27 Jan 2023 17:51:26 +0000 (12:51 -0500)
commit72b8c6d1ebfd40a6ee6be0345ff7abb30c9f9e3d
treee9151f4fdda807982c521eade2078c0e6f5d1fc9
parent337bc26f05e85bf06647a17bad9485a3428c9a2b
pinctrl: don't fall back to pinctrl_select_state_simple()

If CONFIG_PINCTRL_FULL is enabled, never fall back to the simple
implementation. pinctrl_select_state() is called for each device and it
is expected to fail. A fallback to the simple imeplementation doesn't
make much sense.

To keep the return code consistent, we need to change the -EINVAL (which
was ignored before) to -ENOSYS.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Marek Vasut <marex@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/pinctrl/pinctrl-uclass.c