On Sat, Sep 12, 2020 at 5:39 AM Jason Yan <yanaijie@xxxxxxxxxx> wrote: > > This eliminates the following sparse warning: > > drivers/acpi/apei/apei-base.c:290:23: warning: symbol > 'apei_resources_all' was not declared. Should it be static? > > Reported-by: Hulk Robot <hulkci@xxxxxxxxxx> > Signed-off-by: Jason Yan <yanaijie@xxxxxxxxxx> > --- > drivers/acpi/apei/apei-base.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/acpi/apei/apei-base.c b/drivers/acpi/apei/apei-base.c > index e358d0046494..d3fbac58d91a 100644 > --- a/drivers/acpi/apei/apei-base.c > +++ b/drivers/acpi/apei/apei-base.c > @@ -287,7 +287,7 @@ struct apei_res { > }; > > /* Collect all resources requested, to avoid conflict */ > -struct apei_resources apei_resources_all = { > +static struct apei_resources apei_resources_all = { > .iomem = LIST_HEAD_INIT(apei_resources_all.iomem), > .ioport = LIST_HEAD_INIT(apei_resources_all.ioport), > }; > -- Applied as 5.10 material with the Boris' R-by, thanks!