1
0
Fork 0

gpiolib: acpi: Change type of dflags

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>
hifive-unleashed-5.2
Andy Shevchenko 2019-04-10 18:39:18 +03:00 committed by Linus Walleij
parent 2d6c06f5a4
commit 80c8d927da
1 changed files with 2 additions and 2 deletions

View File

@ -1001,7 +1001,7 @@ acpi_gpiochip_parse_own_gpio(struct acpi_gpio_chip *achip,
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;
@ -1045,7 +1045,7 @@ static void acpi_gpiochip_scan_gpios(struct acpi_gpio_chip *achip)
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;