aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kmod.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kmod.h')
-rw-r--r--include/linux/kmod.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/kmod.h b/include/linux/kmod.h
index 6efd7a78de6a..7f3dbcb78116 100644
--- a/include/linux/kmod.h
+++ b/include/linux/kmod.h
@@ -111,7 +111,12 @@ call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait)
111 111
112extern void usermodehelper_init(void); 112extern void usermodehelper_init(void);
113 113
114#ifdef CONFIG_PM_SLEEP
114extern int usermodehelper_disable(void); 115extern int usermodehelper_disable(void);
115extern void usermodehelper_enable(void); 116extern void usermodehelper_enable(void);
117extern bool usermodehelper_is_disabled(void);
118#else
119static inline bool usermodehelper_is_disabled(void) { return false; }
120#endif
116 121
117#endif /* __LINUX_KMOD_H__ */ 122#endif /* __LINUX_KMOD_H__ */