summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaudiu Beznea <claudiu.beznea@microchip.com>2019-02-07 04:24:53 -0500
committerLinus Walleij <linus.walleij@linaro.org>2019-02-08 07:05:50 -0500
commita2fcb1ce88409497b6e8b0f45a41052d5f07e508 (patch)
tree10ab44ef6b4887e0893fb16c1f4ad9b8fafedcca
parent42ef75576bdd2ca8019c553d25847e124153a7ee (diff)
pinctrl: at91: add compatibles for SAM9X60 pin controller
Add compatibles for SAM9X60 pin controller. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/pinctrl/pinctrl-at91.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c
index 6f443c3728cb..128003597f43 100644
--- a/drivers/pinctrl/pinctrl-at91.c
+++ b/drivers/pinctrl/pinctrl-at91.c
@@ -1215,6 +1215,7 @@ static const struct of_device_id at91_pinctrl_of_match[] = {
1215 { .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops }, 1215 { .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops },
1216 { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops }, 1216 { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops },
1217 { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops }, 1217 { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops },
1218 { .compatible = "microchip,sam9x60-pinctrl", .data = &sam9x60_ops },
1218 { /* sentinel */ } 1219 { /* sentinel */ }
1219}; 1220};
1220 1221
@@ -1757,6 +1758,7 @@ static const struct gpio_chip at91_gpio_template = {
1757static const struct of_device_id at91_gpio_of_match[] = { 1758static const struct of_device_id at91_gpio_of_match[] = {
1758 { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, }, 1759 { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, },
1759 { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops }, 1760 { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops },
1761 { .compatible = "microchip,sam9x60-gpio", .data = &sam9x60_ops },
1760 { /* sentinel */ } 1762 { /* sentinel */ }
1761}; 1763};
1762 1764