Commit ce2076ba authored by Dan Carpenter's avatar Dan Carpenter Committed by Linus Walleij

pinctrl: nuvoton: wpcm450: off by one in wpcm450_gpio_register()

The > WPCM450_NUM_BANKS should be >= or it leads to an out of bounds
access on the next line.

Fixes: a1d1e0e3 ("pinctrl: nuvoton: Add driver for WPCM450")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarJonathan Neuschäfer <j.neuschaefer@gmx.net>
Link: https://lore.kernel.org/r/20220318071131.GA29472@kiliSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 0bb85088
......@@ -1043,7 +1043,7 @@ static int wpcm450_gpio_register(struct platform_device *pdev,
gpio = &pctrl->gpio_bank[reg];
gpio->pctrl = pctrl;
if (reg > WPCM450_NUM_BANKS)
if (reg >= WPCM450_NUM_BANKS)
return dev_err_probe(dev, -EINVAL,
"GPIO index %d out of range!\n", reg);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment