All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] vdpa: Mark macaddr_buf with static keyword
@ 2020-12-18  1:51 Zou Wei
  2020-12-18  5:20   ` Jason Wang
  2020-12-18  7:56   ` Stefano Garzarella
  0 siblings, 2 replies; 8+ messages in thread
From: Zou Wei @ 2020-12-18  1:51 UTC (permalink / raw)
  To: mst, jasowang; +Cc: sgarzare, mgurtovoy, virtualization, linux-kernel, Zou Wei

Fix the following sparse warning:

drivers/vdpa/vdpa_sim/vdpa_sim_net.c:36:4: warning: symbol 'macaddr_buf' was not declared. Should it be static?

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
---
 drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
index c10b698..f048242 100644
--- a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
+++ b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
@@ -33,7 +33,7 @@ static char *macaddr;
 module_param(macaddr, charp, 0);
 MODULE_PARM_DESC(macaddr, "Ethernet MAC address");
 
-u8 macaddr_buf[ETH_ALEN];
+static u8 macaddr_buf[ETH_ALEN];
 
 static struct vdpasim *vdpasim_net_dev;
 
-- 
2.6.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-12-18  8:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-18  1:51 [PATCH -next] vdpa: Mark macaddr_buf with static keyword Zou Wei
2020-12-18  5:20 ` Jason Wang
2020-12-18  5:20   ` Jason Wang
2020-12-18  7:56 ` Stefano Garzarella
2020-12-18  7:56   ` Stefano Garzarella
2020-12-18  8:11   ` 答复: " Zouwei (Samuel)
2020-12-18  8:15     ` Stefano Garzarella
2020-12-18  8:15       ` Stefano Garzarella

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.