diff options
author | Jason Yan <[email protected]> | 2020-04-15 16:43:11 +0800 |
---|---|---|
committer | Michal Simek <[email protected]> | 2020-04-15 10:25:20 +0200 |
commit | f5ba30ba481dd8fd513c16262ab528a2a70780d9 (patch) | |
tree | ae83dec16ce4776bc19475b1fb20a1cfb971d2c7 | |
parent | d0384eedcde21276ac51f57c641f875605024b32 (diff) |
firmware: xilinx: make firmware_debugfs_root static
Fix the following sparse warning:
drivers/firmware/xilinx/zynqmp-debug.c:38:15: warning: symbol
'firmware_debugfs_root' was not declared. Should it be static?
Reported-by: Hulk Robot <[email protected]>
Signed-off-by: Jason Yan <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michal Simek <[email protected]>
-rw-r--r-- | drivers/firmware/xilinx/zynqmp-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/xilinx/zynqmp-debug.c b/drivers/firmware/xilinx/zynqmp-debug.c index c6d0724da4db..43bc6cfdab45 100644 --- a/drivers/firmware/xilinx/zynqmp-debug.c +++ b/drivers/firmware/xilinx/zynqmp-debug.c @@ -35,7 +35,7 @@ static struct pm_api_info pm_api_list[] = { PM_API(PM_QUERY_DATA), }; -struct dentry *firmware_debugfs_root; +static struct dentry *firmware_debugfs_root; /** * zynqmp_pm_argument_value() - Extract argument value from a PM-API request |