12345678910111213141516171819202122232425262728293031 |
- From eebc6573ad940b62a87776db3917e912b4f52d78 Mon Sep 17 00:00:00 2001
- From: Tom Rix <[email protected]>
- Date: Sun, 11 Jun 2023 15:03:05 +0100
- Subject: [PATCH] nvmem: imx-ocotp: set varaiable imx_ocotp_layout
- storage-class-specifier to static
- smatch reports
- drivers/nvmem/imx-ocotp.c:599:21: warning: symbol
- 'imx_ocotp_layout' was not declared. Should it be static?
- This variable is only used in one file so should be static.
- Signed-off-by: Tom Rix <[email protected]>
- Signed-off-by: Srinivas Kandagatla <[email protected]>
- Message-ID: <[email protected]>
- Signed-off-by: Greg Kroah-Hartman <[email protected]>
- ---
- drivers/nvmem/imx-ocotp.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- --- a/drivers/nvmem/imx-ocotp.c
- +++ b/drivers/nvmem/imx-ocotp.c
- @@ -596,7 +596,7 @@ static void imx_ocotp_fixup_cell_info(st
- cell->read_post_process = imx_ocotp_cell_pp;
- }
-
- -struct nvmem_layout imx_ocotp_layout = {
- +static struct nvmem_layout imx_ocotp_layout = {
- .fixup_cell_info = imx_ocotp_fixup_cell_info,
- };
-
|