From 2552349533de5fcc798dccb79e34725262bf45b1 Mon Sep 17 00:00:00 2001 From: xuhongqiang Date: Tue, 30 Jan 2024 11:24:08 +0800 Subject: [PATCH] locking/rtmutex: Adjusts whitespace characters from space to TAB According to the Linux kernel coding style, the Linux kernel does not use spaces for indentation, except for comments, documentation and Kconfig. Signed-off-by: xuhongqiang --- kernel/locking/rtmutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index b110fc57f733..7a70ddf543a7 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -1328,7 +1328,7 @@ static int task_blocks_on_rt_mutex(struct rt_mutex *lock, return -EAGAIN; } - BUG_ON(rt_mutex_real_waiter(task->pi_blocked_on)); + BUG_ON(rt_mutex_real_waiter(task->pi_blocked_on)); waiter->task = task; waiter->lock = lock; -- Gitee