diff mbox

[U-Boot] clk: at91: pmc: align the at91 pmc's compatibles

Message ID 20170203062450.9932-1-wenyou.yang@atmel.com
State Accepted
Commit 3fea809b42cec31b5c179debfc025a2224bb2e70
Delegated to: Andreas Bießmann
Headers show

Commit Message

Wenyou Yang Feb. 3, 2017, 6:24 a.m. UTC
Align the at91 pmc's compatibles with Kernel's.

Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
---

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

Comments

Simon Glass Feb. 6, 2017, 3:34 p.m. UTC | #1
On 2 February 2017 at 22:24, Wenyou Yang <wenyou.yang@atmel.com> wrote:
> Align the at91 pmc's compatibles with Kernel's.
>
> Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
> ---
>
>  drivers/clk/at91/pmc.c | 6 ++++++
>  1 file changed, 6 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox

Patch

diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c
index 76ba91af81..3a346c5133 100644
--- a/drivers/clk/at91/pmc.c
+++ b/drivers/clk/at91/pmc.c
@@ -15,6 +15,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" },
 	{}
 };