Skip to content

Commit 1d9a615

Browse files
Kefeng Wangpmladek
authored andcommitted
workqueue: Use pr_warn instead of pr_warning
Use pr_warn() instead of the remaining pr_warning() calls. Link: http://lkml.kernel.org/r/[email protected] To: [email protected] To: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Signed-off-by: Kefeng Wang <[email protected]> Acked-by: Tejun Heo <[email protected]> Signed-off-by: Petr Mladek <[email protected]>
1 parent 2f13437 commit 1d9a615

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/workqueue.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4374,8 +4374,8 @@ void destroy_workqueue(struct workqueue_struct *wq)
43744374
for_each_pwq(pwq, wq) {
43754375
spin_lock_irq(&pwq->pool->lock);
43764376
if (WARN_ON(pwq_busy(pwq))) {
4377-
pr_warning("%s: %s has the following busy pwq\n",
4378-
__func__, wq->name);
4377+
pr_warn("%s: %s has the following busy pwq\n",
4378+
__func__, wq->name);
43794379
show_pwq(pwq);
43804380
spin_unlock_irq(&pwq->pool->lock);
43814381
mutex_unlock(&wq->mutex);

0 commit comments

Comments
 (0)