We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ae28a commit acadbd0Copy full SHA for acadbd0
arch/loongarch/kernel/time.c
@@ -140,16 +140,17 @@ static int get_timer_irq(void)
140
141
int constant_clockevent_init(void)
142
{
143
- int irq;
144
unsigned int cpu = smp_processor_id();
145
unsigned long min_delta = 0x600;
146
unsigned long max_delta = (1UL << 48) - 1;
147
struct clock_event_device *cd;
148
- static int timer_irq_installed = 0;
+ static int irq = 0, timer_irq_installed = 0;
149
150
- irq = get_timer_irq();
151
- if (irq < 0)
152
- pr_err("Failed to map irq %d (timer)\n", irq);
+ if (!timer_irq_installed) {
+ irq = get_timer_irq();
+ if (irq < 0)
+ pr_err("Failed to map irq %d (timer)\n", irq);
153
+ }
154
155
cd = &per_cpu(constant_clockevent_device, cpu);
156
0 commit comments