12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include <linux/module.h>
- #include <linux/remoteproc.h>
- #include <linux/remoteproc/qcom_rproc.h>
- #include "audio_ssr.h"
- void *audio_ssr_register(const char *domain_name, struct notifier_block *nb)
- {
- if (domain_name == NULL) {
- pr_err("%s: Invalid domain name %d\n", __func__);
- return ERR_PTR(-EINVAL);
- }
- return qcom_register_ssr_notifier(domain_name, nb);
- }
- EXPORT_SYMBOL(audio_ssr_register);
- int audio_ssr_deregister(void *handle, struct notifier_block *nb)
- {
- return qcom_unregister_ssr_notifier(handle, nb);
- }
- EXPORT_SYMBOL(audio_ssr_deregister);
|