Skip to content

Commit 82ad584

Browse files
covanamKAGA-KOKO
authored andcommitted
drm/i915/pmu: Switch to use hrtimer_setup()
hrtimer_setup() takes the callback function pointer as argument and initializes the timer completely. Replace hrtimer_init() and the open coded initialization of hrtimer::function with the new setup mechanism. Patch was created by using Coccinelle. Signed-off-by: Nam Cao <namcao@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Zack Rusin <zack.rusin@broadcom.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Link: https://lore.kernel.org/all/71198b93c438866fe2be7323e59cdbf21aa0d493.1738746904.git.namcao@linutronix.de
1 parent 7358f05 commit 82ad584

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/gpu/drm/i915/i915_pmu.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,8 +1264,7 @@ void i915_pmu_register(struct drm_i915_private *i915)
12641264
int ret = -ENOMEM;
12651265

12661266
spin_lock_init(&pmu->lock);
1267-
hrtimer_init(&pmu->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1268-
pmu->timer.function = i915_sample;
1267+
hrtimer_setup(&pmu->timer, i915_sample, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
12691268
pmu->cpuhp.cpu = -1;
12701269
init_rc6(pmu);
12711270

0 commit comments

Comments
 (0)