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>

authored by Wei Ming Chen and committed by Miguel Ojeda ca0760e7 6efb943b

+1
+1
include/linux/compiler_attributes.h
··· 199 * must end with any of these keywords: 200 * break; 201 * fallthrough; 202 * goto <label>; 203 * return [expression]; 204 *
··· 199 * must end with any of these keywords: 200 * break; 201 * fallthrough; 202 + * continue; 203 * goto <label>; 204 * return [expression]; 205 *