[U-Boot] [PATCH v1] clk: at91: pmc: add more compatibles

To keep the compatibles aligned with kernel, add more compatibles.
Signed-off-by: Wenyou Yang wenyou.yang@atmel.com ---
drivers/clk/at91/pmc.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c index 76ba91a..f866959 100644 --- a/drivers/clk/at91/pmc.c +++ b/drivers/clk/at91/pmc.c @@ -15,7 +15,13 @@ 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,sama5d2-pmc" }, + { .compatible = "atmel,sama5d3-pmc" }, {} };

On Wed, Oct 26, 2016 at 03:21:32PM +0800, Wenyou Yang wrote:
To keep the compatibles aligned with kernel, add more compatibles.
Signed-off-by: Wenyou Yang wenyou.yang@atmel.com
Reviewed-by: Andreas Bießmann andreas@biessmann.org
drivers/clk/at91/pmc.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c index 76ba91a..f866959 100644 --- a/drivers/clk/at91/pmc.c +++ b/drivers/clk/at91/pmc.c @@ -15,7 +15,13 @@ 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,sama5d2-pmc" },
- { .compatible = "atmel,sama5d3-pmc" }, {}
};
participants (2)
-
Andreas Bießmann
-
Wenyou Yang