From: Li Huafei Date: Thu, 8 Apr 2021 03:58:02 +0000 (+0800) Subject: powerpc/mce: Make symbol 'mce_ue_event_work' static X-Git-Tag: v5.13-rc1~90^2~124 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f6f1f48e8b3b242dfa684d6e1b930d239d87533a;p=linux-block.git powerpc/mce: Make symbol 'mce_ue_event_work' static The sparse tool complains as follows: arch/powerpc/kernel/mce.c:43:1: warning: symbol 'mce_ue_event_work' was not declared. Should it be static? This symbol is not used outside of mce.c, so this commit marks it static. Signed-off-by: Li Huafei Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20210408035802.31853-1-lihuafei1@huawei.com --- diff --git a/arch/powerpc/kernel/mce.c b/arch/powerpc/kernel/mce.c index 11f0cae086ed..6aa6b1cda1ed 100644 --- a/arch/powerpc/kernel/mce.c +++ b/arch/powerpc/kernel/mce.c @@ -40,7 +40,7 @@ static struct irq_work mce_ue_event_irq_work = { .func = machine_check_ue_irq_work, }; -DECLARE_WORK(mce_ue_event_work, machine_process_ue_event); +static DECLARE_WORK(mce_ue_event_work, machine_process_ue_event); static BLOCKING_NOTIFIER_HEAD(mce_notifier_list);