Re: [PATCH V2] pinctrl: falcon: add missing put_device() call in pinctrl_falcon_probe()

2020-12-04 Thread Linus Walleij
On Thu, Nov 19, 2020 at 2:08 AM Yu Kuai wrote: > if of_find_device_by_node() succeed, pinctrl_falcon_probe() doesn't have > a corresponding put_device(). Thus add put_device() to fix the exception > handling for this function implementation. > > Fixes: e316cb2b16bb ("OF: pinctrl: MIPS: lantiq:

[PATCH V2] pinctrl: falcon: add missing put_device() call in pinctrl_falcon_probe()

2020-11-18 Thread Yu Kuai
if of_find_device_by_node() succeed, pinctrl_falcon_probe() doesn't have a corresponding put_device(). Thus add put_device() to fix the exception handling for this function implementation. Fixes: e316cb2b16bb ("OF: pinctrl: MIPS: lantiq: adds support for FALCON SoC") Signed-off-by: Yu Kuai ---