Searched refs:_resumefunc (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | pm.h | 61 #define __SET_PM_OPS(_suspendfunc, _resumefunc) \ argument 63 .resume = _resumefunc, \ 65 .thaw = _resumefunc, \ 67 .restore = _resumefunc, \ 69 #define SIMPLE_DEV_PM_OPS(_name, _suspendfunc, _resumefunc) \ argument 71 __SET_PM_OPS(_suspendfunc, _resumefunc) \ 74 #define DEFINE_SIMPLE_DEV_PM_OPS(_name, _suspendfunc, _resumefunc) \ argument 76 __SET_PM_OPS(_suspendfunc, _resumefunc) \ 79 #define SET_SYSTEM_SLEEP_PM_OPS(_suspendfunc, _resumefunc) \ argument 80 __SET_PM_OPS(_suspendfunc, _resumefunc) [all …]
|