mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 08:45:26 -05:00
drivers: perf: use us_to_ktime() where appropriate
The arm_ccn_pmu_poll_period_us are more suitable for using the us_to_ktime(). This can make the code more concise and enhance readability. Signed-off-by: Xichao Zhao <zhao.xichao@vivo.com> Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
@@ -565,7 +565,7 @@ module_param_named(pmu_poll_period_us, arm_ccn_pmu_poll_period_us, uint,
|
||||
|
||||
static ktime_t arm_ccn_pmu_timer_period(void)
|
||||
{
|
||||
return ns_to_ktime((u64)arm_ccn_pmu_poll_period_us * 1000);
|
||||
return us_to_ktime((u64)arm_ccn_pmu_poll_period_us);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user