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 <wanjiabing@vivo.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Wan Jiabing 2021-06-15 19:49:20 +08:00 committed by Rafael J. Wysocki
parent 154ae8bb3c
commit 795e0e38de

View file

@ -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) {