Re: [PATCH v2 03/29] nvmem: add a notifier chain

From: Srinivas Kandagatla
Date: Fri Aug 10 2018 - 04:33:26 EST




On 10/08/18 09:05, Bartosz Golaszewski wrote:
+int nvmem_register_notifier(struct notifier_block *nb)
+{
+ return blocking_notifier_chain_register(&nvmem_notifier, nb);
+}
+EXPORT_SYMBOL_GPL(nvmem_register_notifier);
+
+int nvmem_unregister_notifier(struct notifier_block *nb)
+{
+ return blocking_notifier_chain_unregister(&nvmem_notifier, nb);
+}
+EXPORT_SYMBOL_GPL(nvmem_unregister_notifier);
+
Kerneldoc is missing for these both exported symbols too!

--srini