From: Thierry Reding Date: Mon, 30 Apr 2018 07:38:09 +0000 (+0200) Subject: gpio: dwapb: Use of_device_get_match_data() X-Git-Tag: v4.19~849^2~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7114b7bacbfea6325b7f81c99878df2691916503;p=platform%2Fkernel%2Flinux-rpi.git gpio: dwapb: Use of_device_get_match_data() Use of_device_get_match_data() instead of open-coding it. Signed-off-by: Thierry Reding Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-dwapb.c b/drivers/gpio/gpio-dwapb.c index 7dcd06b11570..494df023271e 100644 --- a/drivers/gpio/gpio-dwapb.c +++ b/drivers/gpio/gpio-dwapb.c @@ -712,13 +712,7 @@ static int dwapb_gpio_probe(struct platform_device *pdev) gpio->flags = 0; if (dev->of_node) { - const struct of_device_id *of_devid; - - of_devid = of_match_device(dwapb_of_match, dev); - if (of_devid) { - if (of_devid->data) - gpio->flags = (uintptr_t)of_devid->data; - } + gpio->flags = (uintptr_t)of_device_get_match_data(dev); } else if (has_acpi_companion(dev)) { const struct acpi_device_id *acpi_id;