| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- From 814c978f02db17f16e6aa2efa2a929372f06da09 Mon Sep 17 00:00:00 2001
- From: Miquel Raynal <[email protected]>
- Date: Tue, 4 Apr 2023 18:21:44 +0100
- Subject: [PATCH] nvmem: Add macro to register nvmem layout drivers
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- Provide a module_nvmem_layout_driver() macro at the end of the
- nvmem-provider.h header to reduce the boilerplate when registering nvmem
- layout drivers.
- Suggested-by: Srinivas Kandagatla <[email protected]>
- Signed-off-by: Miquel Raynal <[email protected]>
- Acked-by: Rafał Miłecki <[email protected]>
- Signed-off-by: Srinivas Kandagatla <[email protected]>
- Link: https://lore.kernel.org/r/[email protected]
- Signed-off-by: Greg Kroah-Hartman <[email protected]>
- ---
- include/linux/nvmem-provider.h | 6 ++++++
- 1 file changed, 6 insertions(+)
- --- a/include/linux/nvmem-provider.h
- +++ b/include/linux/nvmem-provider.h
- @@ -9,6 +9,7 @@
- #ifndef _LINUX_NVMEM_PROVIDER_H
- #define _LINUX_NVMEM_PROVIDER_H
-
- +#include <linux/device/driver.h>
- #include <linux/err.h>
- #include <linux/errno.h>
- #include <linux/gpio/consumer.h>
- @@ -242,4 +243,9 @@ nvmem_layout_get_match_data(struct nvmem
- }
-
- #endif /* CONFIG_NVMEM */
- +
- +#define module_nvmem_layout_driver(__layout_driver) \
- + module_driver(__layout_driver, nvmem_layout_register, \
- + nvmem_layout_unregister)
- +
- #endif /* ifndef _LINUX_NVMEM_PROVIDER_H */
|