Lines Matching refs:resume_fn
322 #define SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \ argument
324 .resume = resume_fn, \
326 .thaw = resume_fn, \
328 .restore = resume_fn,
330 #define SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) argument
334 #define SET_LATE_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \ argument
336 .resume_early = resume_fn, \
338 .thaw_early = resume_fn, \
340 .restore_early = resume_fn,
342 #define SET_LATE_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) argument
346 #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \ argument
348 .runtime_resume = resume_fn, \
351 #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) argument
358 #define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \ argument
360 SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \
376 #define UNIVERSAL_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \ argument
378 SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \
379 SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \