From: Wan Jiabing Date: Tue, 15 Jun 2021 11:49:20 +0000 (+0800) Subject: cpuidle: teo: remove unneeded semicolon in teo_select() X-Git-Tag: block-5.14-2021-07-08~51^2~1^3 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=795e0e38de2c36561a4f14e6e97b8a82f6f2e03c;p=linux-2.6-block.git cpuidle: teo: remove unneeded semicolon in teo_select() Fix following coccicheck warning: drivers/cpuidle/governors/teo.c:315:10-11: Unneeded semicolon Signed-off-by: Wan Jiabing Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/cpuidle/governors/teo.c b/drivers/cpuidle/governors/teo.c index 1e0b2f828abb..7b91060e82f6 100644 --- a/drivers/cpuidle/governors/teo.c +++ b/drivers/cpuidle/governors/teo.c @@ -312,7 +312,7 @@ static int teo_select(struct cpuidle_driver *drv, struct cpuidle_device *dev, /* Check if there is any choice in the first place. */ if (drv->state_count < 2) { - idx = 0;; + idx = 0; goto end; } if (!dev->states_usage[0].disable) {