[8/8] nvmem: layouts: onie-tlv: Convert layout driver into a module
Commit Message
The nvmem core has already been converted to accept layout drivers
compiled as modules. So in order to make this change effective we need
to convert this driver so it can also be compiled as a module. We then
need to expose the match table, provide MODULE_* macros, use
module_init/exit() instead of the early subsys_initcall() and of course
update the Kconfig symbol type to tristate.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
---
drivers/nvmem/layouts/Kconfig | 2 +-
drivers/nvmem/layouts/onie-tlv.c | 15 ++++++++++++++-
2 files changed, 15 insertions(+), 2 deletions(-)
@@ -12,7 +12,7 @@ config NVMEM_LAYOUT_SL28_VPD
If unsure, say N.
config NVMEM_LAYOUT_ONIE_TLV
- bool "ONIE tlv support"
+ tristate "ONIE tlv support"
select CRC32
help
Say Y here if you want to support the Open Compute Project ONIE
@@ -230,6 +230,7 @@ static const struct of_device_id onie_tlv_of_match_table[] = {
{ .compatible = "onie,tlv-layout", },
{},
};
+MODULE_DEVICE_TABLE(of, onie_tlv_of_match_table);
static struct nvmem_layout onie_tlv_layout = {
.name = "ONIE tlv layout",
@@ -241,4 +242,16 @@ static int __init onie_tlv_init(void)
{
return nvmem_layout_register(&onie_tlv_layout);
}
-subsys_initcall(onie_tlv_init);
+
+static void __exit onie_tlv_exit(void)
+{
+ nvmem_layout_unregister(&onie_tlv_layout);
+}
+
+module_init(onie_tlv_init);
+module_exit(onie_tlv_exit);
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Miquel Raynal <miquel.raynal@bootlin.com>");
+MODULE_DESCRIPTION("NVMEM layout driver for Onie TLV table parsing");
+MODULE_ALIAS("NVMEM layout driver for Onie TLV table parsing");