diff options
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/sys.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/base/sys.c b/drivers/base/sys.c index 0d903909af7..3f202f71e4d 100644 --- a/drivers/base/sys.c +++ b/drivers/base/sys.c @@ -471,6 +471,12 @@ int sysdev_resume(void) { struct sysdev_class *cls; + /* + * Called from syscore in mainline but called directly here + * since syscore does not exist in this tree. + */ + irq_pm_syscore_resume(); + WARN_ONCE(!irqs_disabled(), "Interrupts enabled while resuming system devices\n"); |