[PATCH] kernel/sys.c: Convert to use the preferred fallthrough macro

From: Miaohe Lin
Date: Fri Aug 14 2020 - 04:58:35 EST


Convert the uses of fallthrough comments to fallthrough macro.

Signed-off-by: Miaohe Lin <linmiaohe@xxxxxxxxxx>
---
kernel/sys.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/sys.c b/kernel/sys.c
index ca11af9d815d..ab6c409b1159 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1753,7 +1753,7 @@ void getrusage(struct task_struct *p, int who, struct rusage *r)

if (who == RUSAGE_CHILDREN)
break;
- /* fall through */
+ fallthrough;

case RUSAGE_SELF:
thread_group_cputime_adjusted(p, &tgutime, &tgstime);
--
2.19.1