blob: fa8e38681b4b773a037905dc05224c56f80676c2 [file] [log] [blame]
Bjorn Andersson1e140df2017-07-24 22:56:43 -07001#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