Compiler Attributes: Add continue in comment

Add "continue;" for switch/case block according to Doc[1]

[1] https://www.kernel.org/doc/html/latest/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through

Signed-off-by: Wei Ming Chen <jj251510319013@gmail.com>
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
This commit is contained in:
Wei Ming Chen 2021-05-06 20:30:51 +08:00 committed by Miguel Ojeda
parent 6efb943b86
commit ca0760e7d7
1 changed files with 1 additions and 0 deletions

View File

@ -199,6 +199,7 @@
* must end with any of these keywords:
* break;
* fallthrough;
* continue;
* goto <label>;
* return [expression];
*