Skip to content

Commit 6415226

Browse files
committed
ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt
Use proper compatible strings for SAM9X60's RTC and RTT IPs. These are necessary for configuring wakeup sources for ULP1 PM mode. Fixes: eaedc0d ("ARM: at91: pm: add ULP1 support for SAM9X60") Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/20220523092421.317345-3-claudiu.beznea@microchip.com
1 parent ddc980d commit 6415226

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • arch/arm/mach-at91

arch/arm/mach-at91/pm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ static const struct of_device_id sama5d2_ws_ids[] = {
213213
};
214214

215215
static const struct of_device_id sam9x60_ws_ids[] = {
216-
{ .compatible = "atmel,at91sam9x5-rtc", .data = &ws_info[1] },
216+
{ .compatible = "microchip,sam9x60-rtc", .data = &ws_info[1] },
217217
{ .compatible = "atmel,at91rm9200-ohci", .data = &ws_info[2] },
218218
{ .compatible = "usb-ohci", .data = &ws_info[2] },
219219
{ .compatible = "atmel,at91sam9g45-ehci", .data = &ws_info[2] },
220220
{ .compatible = "usb-ehci", .data = &ws_info[2] },
221-
{ .compatible = "atmel,at91sam9260-rtt", .data = &ws_info[4] },
221+
{ .compatible = "microchip,sam9x60-rtt", .data = &ws_info[4] },
222222
{ .compatible = "cdns,sam9x60-macb", .data = &ws_info[5] },
223223
{ /* sentinel */ }
224224
};

0 commit comments

Comments
 (0)