forked from Openwrt/openwrt
323072f3a6
They add NVMEM layouts support. It allows handling NVMEM content independently of NVMEM device access. Skip U-Boot env data patch for now as it break our downstream MAC hacks. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From a8642cd11635a35a5f1dc31857887900d6610778 Mon Sep 17 00:00:00 2001
|
|
From: Tom Rix <trix@redhat.com>
|
|
Date: Tue, 4 Apr 2023 18:21:48 +0100
|
|
Subject: [PATCH] nvmem: layouts: sl28vpd: set varaiable sl28vpd_layout
|
|
storage-class-specifier to static
|
|
|
|
smatch reports
|
|
drivers/nvmem/layouts/sl28vpd.c:144:21: warning: symbol
|
|
'sl28vpd_layout' was not declared. Should it be static?
|
|
|
|
This variable is only used in one file so it should be static.
|
|
|
|
Signed-off-by: Tom Rix <trix@redhat.com>
|
|
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
|
|
Link: https://lore.kernel.org/r/20230404172148.82422-41-srinivas.kandagatla@linaro.org
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/nvmem/layouts/sl28vpd.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/nvmem/layouts/sl28vpd.c
|
|
+++ b/drivers/nvmem/layouts/sl28vpd.c
|
|
@@ -141,7 +141,7 @@ static const struct of_device_id sl28vpd
|
|
};
|
|
MODULE_DEVICE_TABLE(of, sl28vpd_of_match_table);
|
|
|
|
-struct nvmem_layout sl28vpd_layout = {
|
|
+static struct nvmem_layout sl28vpd_layout = {
|
|
.name = "sl28-vpd",
|
|
.of_match_table = sl28vpd_of_match_table,
|
|
.add_cells = sl28vpd_add_cells,
|