You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
bus: omap_l3_noc: add missed callbacks for suspend-to-disk
Add missed callbacks needed for proper supporting of suspend-to-disk by using recently introduced macro SET_NOIRQ_SYSTEM_SLEEP_PM_OPS. Signed-off-by: Grygorii Strashko <Grygorii.Strashko@linaro.org> Acked-by: Nishanth Menon <nm@ti.com> Acked-by: Santosh Shilimkar <ssantosh@kernel.org> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Pavel Machek <pavel@ucw.cz> Reviewed-by: Kevin Hilman <khilman@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
020af89a41
commit
258d2a1095
@@ -300,7 +300,7 @@ static int omap_l3_probe(struct platform_device *pdev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM
|
#ifdef CONFIG_PM_SLEEP
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* l3_resume_noirq() - resume function for l3_noc
|
* l3_resume_noirq() - resume function for l3_noc
|
||||||
@@ -346,7 +346,7 @@ static int l3_resume_noirq(struct device *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct dev_pm_ops l3_dev_pm_ops = {
|
static const struct dev_pm_ops l3_dev_pm_ops = {
|
||||||
.resume_noirq = l3_resume_noirq,
|
SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(NULL, l3_resume_noirq)
|
||||||
};
|
};
|
||||||
|
|
||||||
#define L3_DEV_PM_OPS (&l3_dev_pm_ops)
|
#define L3_DEV_PM_OPS (&l3_dev_pm_ops)
|
||||||
|
|||||||
Reference in New Issue
Block a user