From: Jonathan Cameron <jic23@kernel.org>
To: Nam Cao <namcao@linutronix.de>
Cc: Anna-Maria Behnsen <anna-maria@linutronix.de>,
Frederic Weisbecker <frederic@kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
Andreas Hindborg <a.hindborg@kernel.org>,
Alice Ryhl <aliceryhl@google.com>,
Miguel Ojeda <ojeda@kernel.org>, Kees Cook <kees@kernel.org>,
linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org
Subject: Re: [PATCH 26/44] iio: Switch to use hrtimer_setup()
Date: Sat, 2 Nov 2024 16:00:04 +0000 [thread overview]
Message-ID: <20241102160004.3c7874a7@jic23-huawei> (raw)
In-Reply-To: <516b30771b0d627d6b7461611cbf476aa1fa0e6c.1729865485.git.namcao@linutronix.de>
On Mon, 28 Oct 2024 08:35:02 +0100
Nam Cao <namcao@linutronix.de> wrote:
> There is a newly introduced hrtimer_setup() which will replace
> hrtimer_init(). This new function is similar to the old one, except that it
> also sanity-checks and initializes the timer's callback function.
>
> Switch to use this new function.
>
> Patch was created by using Coccinelle.
>
> Signed-off-by: Nam Cao <namcao@linutronix.de>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Seems sensible to me.
https://lore.kernel.org/lkml/2159c09badceec667d800005ac98824105ba8dc6.1729864615.git.namcao@linutronix.de/
Has definition of hrtimer_setup()
+CC linux-iio as an FYI.
Jonathan
> ---
> Cc: Jonathan Cameron <jic23@kernel.org>
> ---
> drivers/iio/adc/ti-tsc2046.c | 4 +---
> drivers/iio/trigger/iio-trig-hrtimer.c | 4 ++--
> 2 files changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/iio/adc/ti-tsc2046.c b/drivers/iio/adc/ti-tsc2046.c
> index 311d97001249..87c86d752293 100644
> --- a/drivers/iio/adc/ti-tsc2046.c
> +++ b/drivers/iio/adc/ti-tsc2046.c
> @@ -812,9 +812,7 @@ static int tsc2046_adc_probe(struct spi_device *spi)
>
> spin_lock_init(&priv->state_lock);
> priv->state = TSC2046_STATE_SHUTDOWN;
> - hrtimer_init(&priv->trig_timer, CLOCK_MONOTONIC,
> - HRTIMER_MODE_REL_SOFT);
> - priv->trig_timer.function = tsc2046_adc_timer;
> + hrtimer_setup(&priv->trig_timer, tsc2046_adc_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_SOFT);
>
> ret = devm_iio_trigger_register(dev, trig);
> if (ret) {
> diff --git a/drivers/iio/trigger/iio-trig-hrtimer.c b/drivers/iio/trigger/iio-trig-hrtimer.c
> index 716c795d08fb..82c72baccb62 100644
> --- a/drivers/iio/trigger/iio-trig-hrtimer.c
> +++ b/drivers/iio/trigger/iio-trig-hrtimer.c
> @@ -145,8 +145,8 @@ static struct iio_sw_trigger *iio_trig_hrtimer_probe(const char *name)
> trig_info->swt.trigger->ops = &iio_hrtimer_trigger_ops;
> trig_info->swt.trigger->dev.groups = iio_hrtimer_attr_groups;
>
> - hrtimer_init(&trig_info->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
> - trig_info->timer.function = iio_hrtimer_trig_handler;
> + hrtimer_setup(&trig_info->timer, iio_hrtimer_trig_handler, CLOCK_MONOTONIC,
> + HRTIMER_MODE_REL_HARD);
>
> trig_info->sampling_frequency[0] = HRTIMER_DEFAULT_SAMPLING_FREQUENCY;
> trig_info->period = NSEC_PER_SEC / trig_info->sampling_frequency[0];
next prev parent reply other threads:[~2024-11-02 16:00 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-28 7:34 [PATCH 00/44] hrtimers: Switch to new hrtimer interface functions (4/5) Nam Cao
2024-10-28 7:34 ` [PATCH 01/44] USB: chipidea: Switch to use hrtimer_setup() Nam Cao
2024-10-28 7:34 ` [PATCH 02/44] usb: dwc2: " Nam Cao
2024-10-28 7:34 ` [PATCH 03/44] usb: fotg210-hcd: " Nam Cao
2024-10-28 7:34 ` [PATCH 04/44] usb: gadget: " Nam Cao
2024-10-28 7:34 ` [PATCH 05/44] usb: ehci: " Nam Cao
2024-10-28 7:34 ` [PATCH 06/44] usb: musb: cppi41: " Nam Cao
2024-10-28 7:34 ` [PATCH 07/44] usb: typec: tcpm: " Nam Cao
2024-10-28 7:34 ` [PATCH 08/44] serial: 8250: " Nam Cao
2024-10-28 7:34 ` [PATCH 09/44] serial: imx: " Nam Cao
2024-10-28 7:34 ` [PATCH 10/44] serial: sh-sci: " Nam Cao
2024-10-28 7:34 ` [PATCH 11/44] serial: xilinx_uartps: " Nam Cao
2024-10-28 7:34 ` [PATCH 12/44] scsi: " Nam Cao
2024-10-28 7:34 ` [PATCH 13/44] rtc: class: " Nam Cao
2024-10-28 7:34 ` [PATCH 14/44] pps: generators: pps_gen_parport: " Nam Cao
2024-10-28 7:34 ` [PATCH 15/44] powercap: " Nam Cao
2024-10-28 11:44 ` Rafael J. Wysocki
2024-10-28 7:34 ` [PATCH 16/44] power: supply: ab8500_chargalg: " Nam Cao
2024-10-28 12:48 ` Linus Walleij
2024-10-28 7:34 ` [PATCH 17/44] power: reset: ltc2952-poweroff: " Nam Cao
2024-10-28 7:34 ` [PATCH 18/44] drivers: perf: " Nam Cao
2024-10-28 7:34 ` [PATCH 19/44] ntb: ntb_pingpong: " Nam Cao
2024-10-28 7:34 ` [PATCH 20/44] mmc: dw_mmc: " Nam Cao
2024-10-28 7:34 ` [PATCH 21/44] misc: vcpu_stall_detector: " Nam Cao
2024-10-28 7:34 ` [PATCH 22/44] media: " Nam Cao
2024-10-28 8:00 ` Hans Verkuil
2024-10-28 7:34 ` [PATCH 23/44] mailbox: " Nam Cao
2024-10-28 7:35 ` [PATCH 24/44] leds: trigger: pattern: " Nam Cao
2024-10-28 7:35 ` [PATCH 25/44] Input: " Nam Cao
2024-10-28 7:35 ` [PATCH 26/44] iio: " Nam Cao
2024-11-02 16:00 ` Jonathan Cameron [this message]
2024-10-28 7:35 ` [PATCH 27/44] i2c: " Nam Cao
2024-10-28 7:35 ` [PATCH 28/44] stm class: heartbeat: " Nam Cao
2024-10-28 7:35 ` [PATCH 29/44] drm/amdgpu: " Nam Cao
2024-10-28 7:35 ` [PATCH 30/44] drm/i915/huc: " Nam Cao
2024-10-28 7:35 ` [PATCH 31/44] drm/i915/gvt: " Nam Cao
2024-10-28 7:35 ` [PATCH 32/44] drm/i915/perf: " Nam Cao
2024-10-28 7:35 ` [PATCH 33/44] drm/i915/pmu: " Nam Cao
2024-10-28 7:35 ` [PATCH 34/44] drm/i915/uncore: " Nam Cao
2024-10-28 7:35 ` [PATCH 35/44] drm/i915/request: " Nam Cao
2024-10-28 7:35 ` [PATCH 36/44] drm/msm: " Nam Cao
2024-10-28 7:35 ` [PATCH 37/44] drm/vkms: " Nam Cao
2024-10-28 7:35 ` [PATCH 38/44] drm/xe/oa: " Nam Cao
2024-10-31 13:12 ` Lucas De Marchi
2024-10-28 7:35 ` [PATCH 39/44] drm/vmwgfx: " Nam Cao
2024-10-28 7:35 ` [PATCH 40/44] virtio: mem: " Nam Cao
2024-10-28 7:35 ` [PATCH 41/44] RDMA: " Nam Cao
2024-10-28 7:35 ` [PATCH 42/44] pwm: gpio: " Nam Cao
2024-10-28 7:35 ` [PATCH 43/44] ASoC: fsl: imx-pcm-fiq: " Nam Cao
2024-10-28 7:35 ` [PATCH 44/44] ALSA: " Nam Cao
2024-10-28 8:58 ` [PATCH 00/44] hrtimers: Switch to new hrtimer interface functions (4/5) Alexander Shishkin
2024-10-28 11:06 ` Thomas Gleixner
2024-10-31 12:21 ` Jani Nikula
2024-10-31 15:59 ` Zack Rusin
2024-10-31 21:42 ` Deucher, Alexander
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241102160004.3c7874a7@jic23-huawei \
--to=jic23@kernel.org \
--cc=a.hindborg@kernel.org \
--cc=aliceryhl@google.com \
--cc=anna-maria@linutronix.de \
--cc=frederic@kernel.org \
--cc=kees@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=namcao@linutronix.de \
--cc=ojeda@kernel.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®