2021-05-15 22:24:14

by Wei Ming Chen

[permalink] [raw]
Subject: [PATCH] docs: Use fallthrough pseudo-keyword

Replace /* fall through */ comment with fallthrough, make
it align with original process/coding-style.rst

Signed-off-by: Wei Ming Chen <[email protected]>
---
Documentation/translations/it_IT/process/coding-style.rst | 2 +-
Documentation/translations/zh_CN/process/coding-style.rst | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/translations/it_IT/process/coding-style.rst b/Documentation/translations/it_IT/process/coding-style.rst
index 95f2e7c985e2..ecc74ba50d3e 100644
--- a/Documentation/translations/it_IT/process/coding-style.rst
+++ b/Documentation/translations/it_IT/process/coding-style.rst
@@ -62,7 +62,7 @@ i ``case``. Un esempio.:
case 'K':
case 'k':
mem <<= 10;
- /* fall through */
+ fallthrough;
default:
break;
}
diff --git a/Documentation/translations/zh_CN/process/coding-style.rst b/Documentation/translations/zh_CN/process/coding-style.rst
index 406d43a02c02..b8c484a84d10 100644
--- a/Documentation/translations/zh_CN/process/coding-style.rst
+++ b/Documentation/translations/zh_CN/process/coding-style.rst
@@ -61,7 +61,7 @@ Linux 内核代码风格
case 'K':
case 'k':
mem <<= 10;
- /* fall through */
+ fallthrough;
default:
break;
}
--
2.25.1



2021-05-21 07:34:57

by Jonathan Corbet

[permalink] [raw]
Subject: Re: [PATCH] docs: Use fallthrough pseudo-keyword

Wei Ming Chen <[email protected]> writes:

> Replace /* fall through */ comment with fallthrough, make
> it align with original process/coding-style.rst
>
> Signed-off-by: Wei Ming Chen <[email protected]>
> ---
> Documentation/translations/it_IT/process/coding-style.rst | 2 +-
> Documentation/translations/zh_CN/process/coding-style.rst | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

jon