diff mbox

[U-Boot,v4,3/3] clk: at91: Align the at91 pmc's compatibles

Message ID 20170414065324.20550-4-wenyou.yang@atmel.com
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Wenyou Yang April 14, 2017, 6:53 a.m. UTC
Align the at91 pmc's compatibles with kernel.

Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Andreas Bießmann <andreas@biessmann.org>
---

Changes in v4:
 - Incorporate [PATCH v2] clk: at91: pmc: align the at91 pmc's compatibles.
 - Rebase on the master branch (22e10be45) of u-boot-dm git tree.
 - Add Reviewed-by tag.

Changes in v3:
 - Rebase on v2017.03.

Changes in v2: None

 drivers/clk/at91/pmc.c | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Simon Glass April 22, 2017, 3:07 a.m. UTC | #1
Align the at91 pmc's compatibles with kernel.

Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Andreas Bießmann <andreas@biessmann.org>
---

Changes in v4:
 - Incorporate [PATCH v2] clk: at91: pmc: align the at91 pmc's compatibles.
 - Rebase on the master branch (22e10be45) of u-boot-dm git tree.
 - Add Reviewed-by tag.

Changes in v3:
 - Rebase on v2017.03.

Changes in v2: None

 drivers/clk/at91/pmc.c | 6 ++++++
 1 file changed, 6 insertions(+)

Applied to u-boot-dm/next, thanks!
diff mbox

Patch

diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c
index fcd693a2f6..72d52c5818 100644
--- a/drivers/clk/at91/pmc.c
+++ b/drivers/clk/at91/pmc.c
@@ -16,6 +16,12 @@ 
 DECLARE_GLOBAL_DATA_PTR;
 
 static const struct udevice_id at91_pmc_match[] = {
+	{ .compatible = "atmel,at91rm9200-pmc" },
+	{ .compatible = "atmel,at91sam9260-pmc" },
+	{ .compatible = "atmel,at91sam9g45-pmc" },
+	{ .compatible = "atmel,at91sam9n12-pmc" },
+	{ .compatible = "atmel,at91sam9x5-pmc" },
+	{ .compatible = "atmel,sama5d3-pmc" },
 	{ .compatible = "atmel,sama5d2-pmc" },
 	{}
 };