Commit 815fad6e authored by Tom Rix's avatar Tom Rix Committed by Borislav Petkov

EDAC/ghes: Change ghes_hw from global to static

Smatch reports this issue
  ghes_edac.c:44:3: warning: symbol 'ghes_hw' was not declared. Should it be static?

ghes_hw is used only in ghes_edac.c so change its storage-class
specifier to static.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/r/20220421135319.1508754-1-trix@redhat.com
parent 2f58783c
...@@ -38,7 +38,7 @@ static struct ghes_pvt *ghes_pvt; ...@@ -38,7 +38,7 @@ static struct ghes_pvt *ghes_pvt;
* This driver's representation of the system hardware, as collected * This driver's representation of the system hardware, as collected
* from DMI. * from DMI.
*/ */
struct ghes_hw_desc { static struct ghes_hw_desc {
int num_dimms; int num_dimms;
struct dimm_info *dimms; struct dimm_info *dimms;
} ghes_hw; } ghes_hw;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment