diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-02-15 15:42:40 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2023-03-06 13:52:34 +0100 |
commit | 6194485db61846cb76c2479d39643db539aa4b53 (patch) | |
tree | e5f81ea23cf68f6fae422c1bdb3a7d13731dbffa /drivers/pinctrl/pinctrl-at91.c | |
parent | 415a099ea55ae716b69beefdcaa654b96087c016 (diff) | |
download | lwn-6194485db61846cb76c2479d39643db539aa4b53.tar.gz lwn-6194485db61846cb76c2479d39643db539aa4b53.zip |
pinctrl: at91: Use of_device_get_match_data()
Use of_device_get_match_data() to simplify the code.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Tested-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20230215134242.37618-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-at91.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-at91.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c index f0b139a1cc3e..8a8de1c5dee2 100644 --- a/drivers/pinctrl/pinctrl-at91.c +++ b/drivers/pinctrl/pinctrl-at91.c @@ -1304,8 +1304,7 @@ static int at91_pinctrl_probe_dt(struct platform_device *pdev, return -ENODEV; info->dev = &pdev->dev; - info->ops = (const struct at91_pinctrl_mux_ops *) - of_match_device(at91_pinctrl_of_match, &pdev->dev)->data; + info->ops = of_device_get_match_data(dev); at91_pinctrl_child_count(info, np); /* @@ -1844,8 +1843,7 @@ static int at91_gpio_probe(struct platform_device *pdev) goto err; } - at91_chip->ops = (const struct at91_pinctrl_mux_ops *) - of_match_device(at91_gpio_of_match, &pdev->dev)->data; + at91_chip->ops = of_device_get_match_data(dev); at91_chip->pioc_virq = irq; at91_chip->pioc_idx = alias_idx; |