Commit 795e0e38 authored by Wan Jiabing's avatar Wan Jiabing Committed by Rafael J. Wysocki
Browse files

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: default avatarWan Jiabing <wanjiabing@vivo.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 154ae8bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {