Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d91758f5 authored by Thomas Renninger's avatar Thomas Renninger Committed by Len Brown
Browse files

acpi-cpufreq: style-only: add parens to math expression



Signed-off-by: default avatarThomas Renninger <trenn@suse.de>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent e0e8c4e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -340,7 +340,7 @@ static unsigned int get_measured_perf(struct cpufreq_policy *policy,


#endif
#endif


	retval = per_cpu(drv_data, policy->cpu)->max_freq * perf_percent / 100;
	retval = (per_cpu(drv_data, policy->cpu)->max_freq * perf_percent) / 100;


	return retval;
	return retval;
}
}