pinctrl: core: handle radix_tree_insert() errors in pinctrl_register_one_pin()
authorSergey Shtylyov <s.shtylyov@omp.ru>
Wed, 19 Jul 2023 20:22:52 +0000 (23:22 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 28 Jul 2023 20:08:58 +0000 (22:08 +0200)
commitecfe9a015d3e1e46504d5b3de7eef1f2d186194a
tree62c32628a99e5e3ef755453f3c54ebfa17d25e6f
parentb56e23bf0c606b68df2919317f7065dabe3c4e86
pinctrl: core: handle radix_tree_insert() errors in pinctrl_register_one_pin()

pinctrl_register_one_pin() doesn't check the result of radix_tree_insert()
despite they both may return a negative error code.  Linus Walleij said he
has copied the radix tree code from kernel/irq/ where the functions calling
radix_tree_insert() are *void* themselves; I think it makes more sense to
propagate the errors from radix_tree_insert() upstream if we can do that...

Found by Linux Verification Center (linuxtesting.org) with the Svace static
analysis tool.

Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Link: https://lore.kernel.org/r/20230719202253.13469-3-s.shtylyov@omp.ru
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/core.c