]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915/perf: Switch to use hrtimer_setup()
authorNam Cao <namcao@linutronix.de>
Wed, 5 Feb 2025 10:46:21 +0000 (11:46 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 18 Feb 2025 10:19:06 +0000 (11:19 +0100)
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/b712673a02c7132ea85eff57b0e7e59f6d5d0da0.1738746904.git.namcao@linutronix.de
drivers/gpu/drm/i915/i915_perf.c

index 5384d1bb492338a66bca8e558b9126ea5536a5b1..279e266b4b06cbc559323834e266f2ef1e474a65 100644 (file)
@@ -3359,9 +3359,8 @@ static int i915_oa_stream_init(struct i915_perf_stream *stream,
                "opening stream oa config uuid=%s\n",
                  stream->oa_config->uuid);
 
-       hrtimer_init(&stream->poll_check_timer,
-                    CLOCK_MONOTONIC, HRTIMER_MODE_REL);
-       stream->poll_check_timer.function = oa_poll_check_timer_cb;
+       hrtimer_setup(&stream->poll_check_timer, oa_poll_check_timer_cb, CLOCK_MONOTONIC,
+                     HRTIMER_MODE_REL);
        init_waitqueue_head(&stream->poll_wq);
        spin_lock_init(&stream->oa_buffer.ptr_lock);
        mutex_init(&stream->lock);