mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From d119eb38faab61125aaa4f63c74eef61585cf34c Mon Sep 17 00:00:00 2001
|
|
From: Miquel Raynal <miquel.raynal@bootlin.com>
|
|
Date: Tue, 4 Apr 2023 18:21:46 +0100
|
|
Subject: [PATCH] nvmem: layouts: onie-tlv: Use module_nvmem_layout_driver()
|
|
|
|
Stop open-coding the module init/exit functions. Use the
|
|
module_nvmem_layout_driver() instead.
|
|
|
|
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
|
|
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
|
|
Link: https://lore.kernel.org/r/20230404172148.82422-39-srinivas.kandagatla@linaro.org
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/nvmem/layouts/onie-tlv.c | 14 +-------------
|
|
1 file changed, 1 insertion(+), 13 deletions(-)
|
|
|
|
--- a/drivers/nvmem/layouts/onie-tlv.c
|
|
+++ b/drivers/nvmem/layouts/onie-tlv.c
|
|
@@ -237,19 +237,7 @@ static struct nvmem_layout onie_tlv_layo
|
|
.of_match_table = onie_tlv_of_match_table,
|
|
.add_cells = onie_tlv_parse_table,
|
|
};
|
|
-
|
|
-static int __init onie_tlv_init(void)
|
|
-{
|
|
- return nvmem_layout_register(&onie_tlv_layout);
|
|
-}
|
|
-
|
|
-static void __exit onie_tlv_exit(void)
|
|
-{
|
|
- nvmem_layout_unregister(&onie_tlv_layout);
|
|
-}
|
|
-
|
|
-module_init(onie_tlv_init);
|
|
-module_exit(onie_tlv_exit);
|
|
+module_nvmem_layout_driver(onie_tlv_layout);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Miquel Raynal <miquel.raynal@bootlin.com>");
|