[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <171075645589.12214.8632484343108151719.tip-bot2@tip-bot2>
Date: Mon, 18 Mar 2024 10:07:35 -0000
From: "tip-bot2 for Martin Blumenstingl" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Martin Blumenstingl <martin.blumenstingl@...glemail.com>,
Daniel Lezcano <daniel.lezcano@...aro.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: timers/core] clocksource/drivers/arm_global_timer: Make
gt_target_rate unsigned long
The following commit has been merged into the timers/core branch of tip:
Commit-ID: f31c204850f9d93906b5ac8c203b2066524ff245
Gitweb: https://git.kernel.org/tip/f31c204850f9d93906b5ac8c203b2066524ff245
Author: Martin Blumenstingl <martin.blumenstingl@...glemail.com>
AuthorDate: Sun, 25 Feb 2024 16:13:34 +01:00
Committer: Daniel Lezcano <daniel.lezcano@...aro.org>
CommitterDate: Mon, 26 Feb 2024 10:07:25 +01:00
clocksource/drivers/arm_global_timer: Make gt_target_rate unsigned long
Change the data type of gt_target_rate to unsigned long as this is what
we get back from clk_get_rate().
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@...glemail.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
Link: https://lore.kernel.org/r/20240225151336.2728533-2-martin.blumenstingl@googlemail.com
---
drivers/clocksource/arm_global_timer.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/clocksource/arm_global_timer.c b/drivers/clocksource/arm_global_timer.c
index d749dee..fd39cfa 100644
--- a/drivers/clocksource/arm_global_timer.c
+++ b/drivers/clocksource/arm_global_timer.c
@@ -52,7 +52,8 @@
*/
static void __iomem *gt_base;
static struct notifier_block gt_clk_rate_change_nb;
-static u32 gt_psv_new, gt_psv_bck, gt_target_rate;
+static u32 gt_psv_new, gt_psv_bck;
+static unsigned long gt_target_rate;
static int gt_ppi;
static struct clock_event_device __percpu *gt_evt;
Powered by blists - more mailing lists