]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
pinctrl: stm32: remove useless check
authorAlexandre TORGUE <alexandre.torgue@st.com>
Wed, 31 May 2017 09:10:43 +0000 (11:10 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 9 Jun 2017 08:03:23 +0000 (10:03 +0200)
There is no link between the number of elements of tab which contains all
pin desc (located in each pinctrl-stm32xxxx.c files) and the pin number
(defined in the tab).

Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/stm32/pinctrl-stm32.c

index 814f76c371c86a87bdb61e50cd1d173530934965..9b7145bc7468fe32bb536dd5c4c9389e2f1fe343 100644 (file)
@@ -449,11 +449,6 @@ static int stm32_pctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
                pin = STM32_GET_PIN_NO(pinfunc);
                func = STM32_GET_PIN_FUNC(pinfunc);
 
-               if (pin >= pctl->match_data->npins) {
-                       dev_err(pctl->dev, "invalid pin number.\n");
-                       return -EINVAL;
-               }
-
                if (!stm32_pctrl_is_function_valid(pctl, pin, func)) {
                        dev_err(pctl->dev, "invalid function.\n");
                        return -EINVAL;