Home
last modified time | relevance | path

Searched refs:idle_fn (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/include/linux/
Dpm_runtime.h37 #define DEFINE_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \ argument
40 resume_fn, idle_fn)
42 #define EXPORT_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \ argument
44 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
46 #define EXPORT_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \ argument
48 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
50 #define EXPORT_NS_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn, ns) \ argument
52 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
54 #define EXPORT_NS_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn, ns) \ argument
56 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
Dpm.h336 #define RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \ argument
339 .runtime_idle = idle_fn,
363 #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \ argument
364 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn)
366 #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) argument
371 runtime_suspend_fn, runtime_resume_fn, idle_fn) \ argument
374 RUNTIME_PM_OPS(runtime_suspend_fn, runtime_resume_fn, idle_fn) \
441 #define UNIVERSAL_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \ argument
444 SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
/linux-6.1.9/arch/arm/mach-omap2/
Dpm33xx-core.c40 static int (*idle_fn)(u32 wfi_flags); variable
101 idle_fn = idle; in amx3_common_init()
139 idle_fn = NULL; in amx3_suspend_deinit()
431 if (idle_fn) in amx3_idle_enter()
432 idle_fn(idle_state->wfi_flags); in amx3_idle_enter()
/linux-6.1.9/drivers/cpuidle/
Dcpuidle-powernv.c229 int (*idle_fn)(struct cpuidle_device *, in add_powernv_state()
241 powernv_states[index].enter = idle_fn; in add_powernv_state()