Skip to content

Commit 6cb3dd7

Browse files
committed
Merge tag 'timers-v5.2-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/urgent
Pull timer fixes from Daniel Lezcano: - Fix missing notrace leading to deadlock on arch_arm_timer (Julien Thierry) - Fix compilation warning on timer-ti-dm (Philippe Mazenauer)
2 parents 4dde821 + 5d6168f commit 6cb3dd7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

drivers/clocksource/arm_arch_timer.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,22 +149,22 @@ u32 arch_timer_reg_read(int access, enum arch_timer_reg reg,
149149
return val;
150150
}
151151

152-
static u64 arch_counter_get_cntpct_stable(void)
152+
static notrace u64 arch_counter_get_cntpct_stable(void)
153153
{
154154
return __arch_counter_get_cntpct_stable();
155155
}
156156

157-
static u64 arch_counter_get_cntpct(void)
157+
static notrace u64 arch_counter_get_cntpct(void)
158158
{
159159
return __arch_counter_get_cntpct();
160160
}
161161

162-
static u64 arch_counter_get_cntvct_stable(void)
162+
static notrace u64 arch_counter_get_cntvct_stable(void)
163163
{
164164
return __arch_counter_get_cntvct_stable();
165165
}
166166

167-
static u64 arch_counter_get_cntvct(void)
167+
static notrace u64 arch_counter_get_cntvct(void)
168168
{
169169
return __arch_counter_get_cntvct();
170170
}

drivers/clocksource/timer-ti-dm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ static int omap_dm_timer_remove(struct platform_device *pdev)
896896
return ret;
897897
}
898898

899-
const static struct omap_dm_timer_ops dmtimer_ops = {
899+
static const struct omap_dm_timer_ops dmtimer_ops = {
900900
.request_by_node = omap_dm_timer_request_by_node,
901901
.request_specific = omap_dm_timer_request_specific,
902902
.request = omap_dm_timer_request,

0 commit comments

Comments
 (0)