From: Rafael J. Wysocki Date: Tue, 15 Mar 2022 19:36:42 +0000 (+0100) Subject: cpuidle: intel_idle: Drop redundant backslash at line end X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=03eb65224e5711e7a2f34b500d44866b322a249a;p=linux.git cpuidle: intel_idle: Drop redundant backslash at line end Drop a redundant backslash character at the end of a line in the spr_cstates[] definition. Signed-off-by: Rafael J. Wysocki Acked-by: Artem Bityutskiy --- diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index 4ba4ab974dbeb..b7640cfe00201 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -781,7 +781,7 @@ static struct cpuidle_state spr_cstates[] __initdata = { { .name = "C1E", .desc = "MWAIT 0x01", - .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE | \ + .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE | CPUIDLE_FLAG_UNUSABLE, .exit_latency = 2, .target_residency = 4,