On Thu, Nov 10, 2022 at 02:22:40PM +0100, Thierry Reding wrote: > On Tue, Nov 08, 2022 at 03:38:52PM +0200, Andy Shevchenko wrote: ... > > + np = to_of_node(chip->fwnode); > > This breaks a number of GPIO controllers on Tegra where chip->fwnode > ends up never getting set. I also see this break drivers like the MFD- > based gpio-max77620, so I don't think this is anything specific to the > Tegra drivers. > > Looking at how fwnode handling works, it seems like we're checking the > wrong value here, since chip->fwnode is only for explicit overrides of > the fwnode value. > > The below patch fixes the regression for me: Thank you! Can you submit it as a formal fix? (Also see below) Of if Bart prefers I can respin fixed verison. Bart? ... > - np = to_of_node(chip->fwnode); > + np = to_of_node(chip->gpiodev->dev.fwnode); dev_fwnode(&chip->gpiodev->dev) ... Your report makes me wonder if I can Cc you the patch that changes that logic, so you can help with a testing on OF platforms. -- With Best Regards, Andy Shevchenko