On Mon, Dec 4, 2023 at 12:09 AM Linus Walleij <linus.walleij@xxxxxxxxxx> wrote: > > On Sat, Dec 2, 2023 at 10:42 AM Nuno Sá <noname.nuno@xxxxxxxxx> wrote: > > Hopefully, I'll get into the gpio stuff later on. From a brief look, > the auxiliary > > bus might feet and easier than mfd. > > You can also just spawn a random platform_device from the HWMON driver > and let that probe a driver down in drivers/gpio/*. > Please don't. A "random platform_device" even reads like a bad idea. Conceptually the GPIO part is not a child but one of the modules. It should be an MFD device IMO. Bart > static struct platform_device my_gpio_device = { > .name = "my-gpio", > .id = -1, > }; > > my_gpio_device.dev.platform_data = ... ; > my_gpio_device.dev.parent = dev; > return platform_device_register(&my_gpio_device); > > You can then pass any accessors as platform data. This in a way is what > the MFD or aux buses do just more organized. > > Yours > Linus Walleij