Most of the code inside GPIO library is using enum gpiod_flags.
Some of the function still operate with unsigned int.
In order to be more consistent and better type checking, convert
acpi_gpiochip_parse_own_gpio() to use enum gpiod_flags instead of
unsigned int.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
struct fwnode_handle *fwnode,
const char **name,
unsigned long *lflags,
- unsigned int *dflags)
+ enum gpiod_flags *dflags)
{
struct gpio_chip *chip = achip->chip;
struct gpio_desc *desc;
device_for_each_child_node(chip->parent, fwnode) {
unsigned long lflags;
- unsigned int dflags;
+ enum gpiod_flags dflags;
struct gpio_desc *desc;
const char *name;
int ret;