diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-07-07 15:09:37 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2020-07-09 14:09:28 +0200 |
commit | 57d2dd4bd18b1378b3bc0b6b2b8b858deb6c2fa7 (patch) | |
tree | f06b84d212363400bcfe02be8ee02e9173822404 /drivers/acpi/processor_idle.c | |
parent | dcb7fd82c75ee2d6e6f9d8cc71c52519ed52e258 (diff) | |
download | linux-stable-57d2dd4bd18b1378b3bc0b6b2b8b858deb6c2fa7.tar.gz linux-stable-57d2dd4bd18b1378b3bc0b6b2b8b858deb6c2fa7.tar.bz2 linux-stable-57d2dd4bd18b1378b3bc0b6b2b8b858deb6c2fa7.zip |
ACPI: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary
fall-through markings when it is the case.
Link: https://www.kernel.org/doc/html/latest/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through # [1]
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/processor_idle.c')
-rw-r--r-- | drivers/acpi/processor_idle.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 75534c5b5433..9325feaac5f8 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c @@ -203,8 +203,7 @@ static void tsc_check_state(int state) */ if (boot_cpu_has(X86_FEATURE_NONSTOP_TSC)) return; - - /*FALL THROUGH*/ + fallthrough; default: /* TSC could halt in idle, so notify users */ if (state > ACPI_STATE_C1) |