projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3cb2bc9
)
gpio: ep93xx: add DT support for gpio-ep93xx
author
Nikita Shubin
<nikita.shubin@maquefel.me>
Fri, 27 Jan 2023 08:52:06 +0000
(11:52 +0300)
committer
Nikita Shubin
<nikita.shubin@maquefel.me>
Mon, 24 Apr 2023 11:48:06 +0000
(14:48 +0300)
Add match table.
Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
drivers/gpio/gpio-ep93xx.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-ep93xx.c
b/drivers/gpio/gpio-ep93xx.c
index ca508c7c4f2feab975983ee111a8f81d0458683a..4e3d01fab012af9c4b1d27be0c7b210a98adde74 100644
(file)
--- a/
drivers/gpio/gpio-ep93xx.c
+++ b/
drivers/gpio/gpio-ep93xx.c
@@
-363,9
+363,15
@@
static int ep93xx_gpio_probe(struct platform_device *pdev)
return devm_gpiochip_add_data(&pdev->dev, gc, egc);
}
+static const struct of_device_id ep93xx_gpio_match[] = {
+ { .compatible = "cirrus,ep9301-gpio" },
+ { /* end of table */ },
+};
+
static struct platform_driver ep93xx_gpio_driver = {
.driver = {
.name = "gpio-ep93xx",
+ .of_match_table = ep93xx_gpio_match,
},
.probe = ep93xx_gpio_probe,
};