* Tony Lindgren <tony@xxxxxxxxxxx> [180911 18:41]: > For omap2, we don't need to save context and don't want to remove any > triggering so let's add a quirk flag for that. ... > + switch (cmd) { > + case CPU_CLUSTER_PM_ENTER: > + /* Gets cleard on runtime_suspend */ > + bank->power_mode = OFF_MODE; Oops I forgot to check for OMAP_GPIO_QUIRK_IDLE_REMOVE_TRIGGER here, this should be: if (bank->quirks & OMAP_GPIO_QUIRK_IDLE_REMOVE_TRIGGER) bank->power_mode = OFF_MODE; Regards, Tony