Message ID | 20230918080951.3615-9-raag.jadav@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix symbol export for _SIMPLE_ variants of _PM_OPS() | expand |
diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c index 19a0adf8ce3d..1d36deb1b79f 100644 --- a/drivers/mfd/arizona-core.c +++ b/drivers/mfd/arizona-core.c @@ -781,7 +781,7 @@ static int arizona_resume(struct device *dev) return 0; } -EXPORT_GPL_DEV_PM_OPS(arizona_pm_ops) = { +EXPORT_GPL_RUNTIME_PM_OPS(arizona_pm_ops) = { RUNTIME_PM_OPS(arizona_runtime_suspend, arizona_runtime_resume, NULL)
With original macro being renamed to EXPORT_GPL_RUNTIME_PM_OPS(), use the new macro. Signed-off-by: Raag Jadav <raag.jadav@intel.com> --- drivers/mfd/arizona-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)