diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2021-11-23 09:36:18 +0100 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2021-11-23 13:45:00 +0100 |
commit | 5a3ba99b62d8486de0316334e72ac620d4b94fdd (patch) | |
tree | bb714c42ec9ee6948d437501da33168a8ef93d73 /drivers/char/ipmi/ipmi_msghandler.c | |
parent | ipmi: Move remove_work to dedicated workqueue (diff) | |
download | linux-5a3ba99b62d8486de0316334e72ac620d4b94fdd.tar.xz linux-5a3ba99b62d8486de0316334e72ac620d4b94fdd.zip |
ipmi: msghandler: Make symbol 'remove_work_wq' static
The sparse tool complains as follows:
drivers/char/ipmi/ipmi_msghandler.c:194:25: warning:
symbol 'remove_work_wq' was not declared. Should it be static?
This symbol is not used outside of ipmi_msghandler.c, so
marks it static.
Fixes: 1d49eb91e86e ("ipmi: Move remove_work to dedicated workqueue")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Message-Id: <20211123083618.2366808-1-weiyongjun1@huawei.com>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'drivers/char/ipmi/ipmi_msghandler.c')
-rw-r--r-- | drivers/char/ipmi/ipmi_msghandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c index 1ade72bfae0f..a2ec0171363a 100644 --- a/drivers/char/ipmi/ipmi_msghandler.c +++ b/drivers/char/ipmi/ipmi_msghandler.c @@ -191,7 +191,7 @@ struct ipmi_user { struct work_struct remove_work; }; -struct workqueue_struct *remove_work_wq; +static struct workqueue_struct *remove_work_wq; static struct ipmi_user *acquire_ipmi_user(struct ipmi_user *user, int *index) __acquires(user->release_barrier) |