Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.18-rc4 22 lines 428 B view raw
1#ifndef __QCOM_RPROC_H__ 2#define __QCOM_RPROC_H__ 3 4struct notifier_block; 5 6#if IS_ENABLED(CONFIG_QCOM_RPROC_COMMON) 7 8int qcom_register_ssr_notifier(struct notifier_block *nb); 9void qcom_unregister_ssr_notifier(struct notifier_block *nb); 10 11#else 12 13static inline int qcom_register_ssr_notifier(struct notifier_block *nb) 14{ 15 return 0; 16} 17 18static inline void qcom_unregister_ssr_notifier(struct notifier_block *nb) {} 19 20#endif 21 22#endif