> From: devel [mailto:driverdev-devel-boun...@linuxdriverproject.org] On Behalf > Of sthem...@exchange.microsoft.com > Sent: Tuesday, August 23, 2016 1:33 > To: KY Srinivasan <k...@microsoft.com>; Haiyang Zhang > <haiya...@microsoft.com> > Cc: de...@linuxdriverproject.org; Stephen Hemminger > <sthem...@microsoft.com> > Subject: [PATCH 1/2] hyperv: make mmio resource local > > This sender failed our fraud detection checks and may not be who they appear > to be. Learn about spoofing at http://aka.ms/LearnAboutSpoofing > > From: Stephen Hemminger <sthem...@microsoft.com> > > This fixes a sparse warning because hyperv_mmio resources > are only used in this one file and should be static. > > Signed-off-by: Stephen Hemminger <sthem...@microsoft.com> > --- > drivers/hv/vmbus_drv.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c > index e82f7e1..954d16a 100644 > --- a/drivers/hv/vmbus_drv.c > +++ b/drivers/hv/vmbus_drv.c > @@ -105,8 +105,8 @@ static struct notifier_block hyperv_panic_block = { > > static const char *fb_mmio_name = "fb_range"; > static struct resource *fb_mmio; > -struct resource *hyperv_mmio; > -DEFINE_SEMAPHORE(hyperv_mmio_lock); > +static struct resource *hyperv_mmio; > +static DEFINE_SEMAPHORE(hyperv_mmio_lock); > > static int vmbus_exists(void) > { > --
I also found this and was trying to fix this. :-) Reviewed-by: Dexuan Cui <de...@microsoft.com> _______________________________________________ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel