Commit f49bd06e authored by Maxime Ripard's avatar Maxime Ripard Committed by Linus Torvalds

rtc: sunxi: change compatibles

The Allwinner A10 compatibles were following a slightly different
compatible patterns than the rest of the SoCs for historical reasons.
Change the compatibles to match the other pattern in the RTC driver for
consistency.
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6a2b3422
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
RTC controller for the Allwinner A10/A20 RTC controller for the Allwinner A10/A20
Required properties: Required properties:
- compatible : Should be "allwinner,sun4i-rtc" or "allwinner,sun7i-a20-rtc" - compatible : Should be "allwinner,sun4i-a10-rtc" or "allwinner,sun7i-a20-rtc"
- reg: physical base address of the controller and length of memory mapped - reg: physical base address of the controller and length of memory mapped
region. region.
- interrupts: IRQ line for the RTC. - interrupts: IRQ line for the RTC.
...@@ -11,7 +11,7 @@ Required properties: ...@@ -11,7 +11,7 @@ Required properties:
Example: Example:
rtc: rtc@01c20d00 { rtc: rtc@01c20d00 {
compatible = "allwinner,sun4i-rtc"; compatible = "allwinner,sun4i-a10-rtc";
reg = <0x01c20d00 0x20>; reg = <0x01c20d00 0x20>;
interrupts = <24>; interrupts = <24>;
}; };
...@@ -428,7 +428,7 @@ static const struct rtc_class_ops sunxi_rtc_ops = { ...@@ -428,7 +428,7 @@ static const struct rtc_class_ops sunxi_rtc_ops = {
}; };
static const struct of_device_id sunxi_rtc_dt_ids[] = { static const struct of_device_id sunxi_rtc_dt_ids[] = {
{ .compatible = "allwinner,sun4i-rtc", .data = &data_year_param[0] }, { .compatible = "allwinner,sun4i-a10-rtc", .data = &data_year_param[0] },
{ .compatible = "allwinner,sun7i-a20-rtc", .data = &data_year_param[1] }, { .compatible = "allwinner,sun7i-a20-rtc", .data = &data_year_param[1] },
{ /* sentinel */ }, { /* sentinel */ },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment