Skip to content

Commit 1c40169

Browse files
committed
ARM: at91: pm: use proper compatibles for sama7g5's rtc and rtt
Use proper compatible strings for SAMA7G5's RTC and RTT IPs. These are necessary for configuring wakeup sources for ULP1 PM mode. Fixes: 6501330 ("ARM: at91: pm: add pm support for SAMA7G5") Signed-off-by: Claudiu Beznea <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 6415226 commit 1c40169

File tree

1 file changed

+2
-2
lines changed
  • arch/arm/mach-at91

1 file changed

+2
-2
lines changed

arch/arm/mach-at91/pm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,13 @@ static const struct of_device_id sam9x60_ws_ids[] = {
224224
};
225225

226226
static const struct of_device_id sama7g5_ws_ids[] = {
227-
{ .compatible = "atmel,at91sam9x5-rtc", .data = &ws_info[1] },
227+
{ .compatible = "microchip,sama7g5-rtc", .data = &ws_info[1] },
228228
{ .compatible = "microchip,sama7g5-ohci", .data = &ws_info[2] },
229229
{ .compatible = "usb-ohci", .data = &ws_info[2] },
230230
{ .compatible = "atmel,at91sam9g45-ehci", .data = &ws_info[2] },
231231
{ .compatible = "usb-ehci", .data = &ws_info[2] },
232232
{ .compatible = "microchip,sama7g5-sdhci", .data = &ws_info[3] },
233-
{ .compatible = "atmel,at91sam9260-rtt", .data = &ws_info[4] },
233+
{ .compatible = "microchip,sama7g5-rtt", .data = &ws_info[4] },
234234
{ /* sentinel */ }
235235
};
236236

0 commit comments

Comments
 (0)