From nobody Fri Dec 19 19:10:08 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AF861C83F14 for ; Thu, 31 Aug 2023 01:31:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345558AbjHaBbj (ORCPT ); Wed, 30 Aug 2023 21:31:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44972 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237370AbjHaBbg (ORCPT ); Wed, 30 Aug 2023 21:31:36 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 327C0CD7; Wed, 30 Aug 2023 18:31:32 -0700 (PDT) Date: Thu, 31 Aug 2023 01:31:29 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1693445490; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=AKMSMLKeV9hy8IkjR78R8Wi4MQuuxYWIByzwTcTrtts=; b=ttcUopT/QqwWBOaSYDtW9arpToBJOIl3CQ0Tcapfv3IA4yj64nKSIeFa9X1wAlsn0gCfts g/zbdUYwbC6kTr0gOzyjjuDgQvomITse80MxIRlIq0410hRnTToPqwFEocTcBeL2yJhNue b3EFB+MF6J4KCfJrlJgeJe7Gf8cZZ2mi92MgSZ2mjAj8KsgUfoEpynvL6JheohLpyKkeKH 4YajbhPmp5dZ8lP4lD5r+JmkQRJq380K7rlomYDfAkW9h1llMfMZqCYpYomdRfNSG6ibvt ZVba3uZ+EX/5p3MWf52HTznhTDXDjybs2fAHVpHUHIWx5uRk+6rK0gyihmSO0w== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1693445490; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=AKMSMLKeV9hy8IkjR78R8Wi4MQuuxYWIByzwTcTrtts=; b=wWk9weZAAhEezacsaePJ+RI1q0E+/pG6ExCxYR+/iNt3iFKh8Rrlk+S6EbA+2sSsovIuwo s5PVTFSZf83TYJAg== From: "tip-bot2 for Mans Rullgard" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: timers/core] clocksource/drivers/sun5i: Remove pointless struct Cc: Mans Rullgard , Jernej Skrabec , Maxime Ripard , Daniel Lezcano , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20230630201800.16501-3-mans@mansr.com> References: <20230630201800.16501-3-mans@mansr.com> MIME-Version: 1.0 Message-ID: <169344548973.27769.3145707060087008875.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the timers/core branch of tip: Commit-ID: 0b38dd178df435d9895ad015dde34cd4139374e9 Gitweb: https://git.kernel.org/tip/0b38dd178df435d9895ad015dde34cd41= 39374e9 Author: Mans Rullgard AuthorDate: Fri, 30 Jun 2023 21:01:27 +01:00 Committer: Daniel Lezcano CommitterDate: Fri, 18 Aug 2023 12:15:13 +02:00 clocksource/drivers/sun5i: Remove pointless struct Remove the pointless struct added in the previous patch to make the diff smaller. Signed-off-by: Mans Rullgard Acked-by: Jernej Skrabec Acked-by: Maxime Ripard Signed-off-by: Daniel Lezcano Link: https://lore.kernel.org/r/20230630201800.16501-3-mans@mansr.com --- drivers/clocksource/timer-sun5i.c | 49 +++++++++++++----------------- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/drivers/clocksource/timer-sun5i.c b/drivers/clocksource/timer-= sun5i.c index e0ca97c..3ca427e 100644 --- a/drivers/clocksource/timer-sun5i.c +++ b/drivers/clocksource/timer-sun5i.c @@ -35,22 +35,17 @@ =20 #define TIMER_SYNC_TICKS 3 =20 -/* Pointless struct to minimise diff */ -struct _sun5i_timer { +struct sun5i_timer { void __iomem *base; struct clk *clk; struct notifier_block clk_rate_cb; u32 ticks_per_jiffy; -}; - -struct sun5i_timer { - struct _sun5i_timer timer; struct clocksource clksrc; struct clock_event_device clkevt; }; =20 #define nb_to_sun5i_timer(x) \ - container_of(x, struct sun5i_timer, timer.clk_rate_cb) + container_of(x, struct sun5i_timer, clk_rate_cb) #define clksrc_to_sun5i_timer(x) \ container_of(x, struct sun5i_timer, clksrc) #define clkevt_to_sun5i_timer(x) \ @@ -64,28 +59,28 @@ struct sun5i_timer { */ static void sun5i_clkevt_sync(struct sun5i_timer *ce) { - u32 old =3D readl(ce->timer.base + TIMER_CNTVAL_LO_REG(1)); + u32 old =3D readl(ce->base + TIMER_CNTVAL_LO_REG(1)); =20 - while ((old - readl(ce->timer.base + TIMER_CNTVAL_LO_REG(1))) < TIMER_SYN= C_TICKS) + while ((old - readl(ce->base + TIMER_CNTVAL_LO_REG(1))) < TIMER_SYNC_TICK= S) cpu_relax(); } =20 static void sun5i_clkevt_time_stop(struct sun5i_timer *ce, u8 timer) { - u32 val =3D readl(ce->timer.base + TIMER_CTL_REG(timer)); - writel(val & ~TIMER_CTL_ENABLE, ce->timer.base + TIMER_CTL_REG(timer)); + u32 val =3D readl(ce->base + TIMER_CTL_REG(timer)); + writel(val & ~TIMER_CTL_ENABLE, ce->base + TIMER_CTL_REG(timer)); =20 sun5i_clkevt_sync(ce); } =20 static void sun5i_clkevt_time_setup(struct sun5i_timer *ce, u8 timer, u32 = delay) { - writel(delay, ce->timer.base + TIMER_INTVAL_LO_REG(timer)); + writel(delay, ce->base + TIMER_INTVAL_LO_REG(timer)); } =20 static void sun5i_clkevt_time_start(struct sun5i_timer *ce, u8 timer, bool= periodic) { - u32 val =3D readl(ce->timer.base + TIMER_CTL_REG(timer)); + u32 val =3D readl(ce->base + TIMER_CTL_REG(timer)); =20 if (periodic) val &=3D ~TIMER_CTL_ONESHOT; @@ -93,7 +88,7 @@ static void sun5i_clkevt_time_start(struct sun5i_timer *c= e, u8 timer, bool perio val |=3D TIMER_CTL_ONESHOT; =20 writel(val | TIMER_CTL_ENABLE | TIMER_CTL_RELOAD, - ce->timer.base + TIMER_CTL_REG(timer)); + ce->base + TIMER_CTL_REG(timer)); } =20 static int sun5i_clkevt_shutdown(struct clock_event_device *clkevt) @@ -118,7 +113,7 @@ static int sun5i_clkevt_set_periodic(struct clock_event= _device *clkevt) struct sun5i_timer *ce =3D clkevt_to_sun5i_timer(clkevt); =20 sun5i_clkevt_time_stop(ce, 0); - sun5i_clkevt_time_setup(ce, 0, ce->timer.ticks_per_jiffy); + sun5i_clkevt_time_setup(ce, 0, ce->ticks_per_jiffy); sun5i_clkevt_time_start(ce, 0, true); return 0; } @@ -139,7 +134,7 @@ static irqreturn_t sun5i_timer_interrupt(int irq, void = *dev_id) { struct sun5i_timer *ce =3D dev_id; =20 - writel(0x1, ce->timer.base + TIMER_IRQ_ST_REG); + writel(0x1, ce->base + TIMER_IRQ_ST_REG); ce->clkevt.event_handler(&ce->clkevt); =20 return IRQ_HANDLED; @@ -149,7 +144,7 @@ static u64 sun5i_clksrc_read(struct clocksource *clksrc) { struct sun5i_timer *cs =3D clksrc_to_sun5i_timer(clksrc); =20 - return ~readl(cs->timer.base + TIMER_CNTVAL_LO_REG(1)); + return ~readl(cs->base + TIMER_CNTVAL_LO_REG(1)); } =20 static int sun5i_rate_cb(struct notifier_block *nb, @@ -166,7 +161,7 @@ static int sun5i_rate_cb(struct notifier_block *nb, case POST_RATE_CHANGE: clocksource_register_hz(&cs->clksrc, ndata->new_rate); clockevents_update_freq(&cs->clkevt, ndata->new_rate); - cs->timer.ticks_per_jiffy =3D DIV_ROUND_UP(ndata->new_rate, HZ); + cs->ticks_per_jiffy =3D DIV_ROUND_UP(ndata->new_rate, HZ); break; =20 default: @@ -180,7 +175,7 @@ static int __init sun5i_setup_clocksource(struct device= _node *node, struct sun5i_timer *cs, unsigned long rate) { - void __iomem *base =3D cs->timer.base; + void __iomem *base =3D cs->base; int ret; =20 writel(~0, base + TIMER_INTVAL_LO_REG(1)); @@ -206,7 +201,7 @@ static int __init sun5i_setup_clockevent(struct device_= node *node, struct sun5i_timer *ce, unsigned long rate, int irq) { - void __iomem *base =3D ce->timer.base; + void __iomem *base =3D ce->base; int ret; u32 val; =20 @@ -282,13 +277,13 @@ static int __init sun5i_timer_init(struct device_node= *node) goto err_disable_clk; } =20 - st->timer.base =3D timer_base; - st->timer.ticks_per_jiffy =3D DIV_ROUND_UP(rate, HZ); - st->timer.clk =3D clk; - st->timer.clk_rate_cb.notifier_call =3D sun5i_rate_cb; - st->timer.clk_rate_cb.next =3D NULL; + st->base =3D timer_base; + st->ticks_per_jiffy =3D DIV_ROUND_UP(rate, HZ); + st->clk =3D clk; + st->clk_rate_cb.notifier_call =3D sun5i_rate_cb; + st->clk_rate_cb.next =3D NULL; =20 - ret =3D clk_notifier_register(clk, &st->timer.clk_rate_cb); + ret =3D clk_notifier_register(clk, &st->clk_rate_cb); if (ret) { pr_err("Unable to register clock notifier.\n"); goto err_disable_clk; @@ -305,7 +300,7 @@ static int __init sun5i_timer_init(struct device_node *= node) return sun5i_setup_clockevent(node, st, rate, irq); =20 err_remove_notifier: - clk_notifier_unregister(clk, &st->timer.clk_rate_cb); + clk_notifier_unregister(clk, &st->clk_rate_cb); err_disable_clk: clk_disable_unprepare(clk); err_free: