Commit faf6dc64 authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

ARM: at91: pm: remove unnecessary at91sam9x60_idle



cpu_do_idle() is already the default action for arm_pm_idle, there is no
need to open code it.

Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20200804115622.63232-1-alexandre.belloni@bootlin.com
parent e222f943
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -558,11 +558,6 @@ static void at91rm9200_idle(void)
	writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
}

static void at91sam9x60_idle(void)
{
	cpu_do_idle();
}

static void at91sam9_idle(void)
{
	writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
@@ -907,7 +902,7 @@ void __init sam9x60_pm_init(void)
	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
	at91_pm_modes_init();
	at91_dt_ramc();
	at91_pm_init(at91sam9x60_idle);
	at91_pm_init(NULL);

	soc_pm.ws_ids = sam9x60_ws_ids;
	soc_pm.config_pmc_ws = at91_sam9x60_config_pmc_ws;