On Thu, Mar 23, 2017 at 02:41:53PM +0100, Linus Walleij wrote: > On Thu, Mar 23, 2017 at 1:34 PM, Uwe Kleine-König > <u.kleine-koe...@pengutronix.de> wrote: > > > Maybe we can make gpiod_get_optional look like this: > > > > if (!dev->of_node && isnt_a_acpi_device(dev) && > > !IS_ENABLED(GPIOLIB)) > > return NULL; > > else > > return -ENOSYS; > > > > I don't know how isnt_a_acpi_device looks like, probably it involves > > CONFIG_ACPI and/or dev->acpi_node. > > > > This should be safe and still comfortable for legacy platforms, isn't it? > > I like the looks of this. > > Can we revert Dmitry's patch and apply something like this instead? > > Dmitry, how do you feel about this?
I frankly do not see the point. It still makes driver code more complex for no good reason. I also think that not having optional GPIO is not an error, so returning value from error space is not correct. NULL is value from another space altogether. Uwe seems to be concerned about case that I find extremely unlikely. We are talking about a system that does not have GPIO support and behaves just fine, with the exception that it actually has (physically) a *single* GPIO, and that GPIO happens to be optional in a single driver, but in this particular system is actually needed (but that need manifests in a non-obvious way). And we have system integrator that has no idea what they are doing (no schematic, etc). I think that if there is one optional GPIO there will be mandatiry GPIOs in such system as well and selection of GPIOLIB will be forced early on in board bringup. Thanks. -- Dmitry