From cb25a07bf6754a47558c5ce869529c3237b98335 Mon Sep 17 00:00:00 2001 From: K A R T H I K Date: Sat, 9 Oct 2021 18:42:25 +0530 Subject: [PATCH] drivers: event_timer: Ignore (.head = RB_ROOT and .next = NULL) Signed-off-by: K A R T H I K --- drivers/soc/qcom/event_timer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/soc/qcom/event_timer.c b/drivers/soc/qcom/event_timer.c index d50d68c4aefd..8948fd3aa767 100644 --- a/drivers/soc/qcom/event_timer.c +++ b/drivers/soc/qcom/event_timer.c @@ -51,8 +51,8 @@ struct hrtimer_info { static DEFINE_PER_CPU(struct hrtimer_info, per_cpu_hrtimer); static DEFINE_PER_CPU(struct timerqueue_head, timer_head) = { - .head = RB_ROOT, - .next = NULL, +// .head = RB_ROOT, +// .next = NULL, }; static DEFINE_SPINLOCK(event_timer_lock);