time.c (4a1c287aabba8b3a8efbfb2381d95c38470ed171) | time.c (f9a015391e8908e68bd3147a8a5d8ac5f3ea2126) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * linux/arch/m68k/sun3x/time.c 4 * 5 * Sun3x-specific time handling 6 */ 7 8#include <linux/types.h> --- 76 unchanged lines hidden (view full) --- 85 enable_irq(5); 86 legacy_timer_tick(1); 87 local_irq_restore(flags); 88 89 return IRQ_HANDLED; 90} 91#endif 92 | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * linux/arch/m68k/sun3x/time.c 4 * 5 * Sun3x-specific time handling 6 */ 7 8#include <linux/types.h> --- 76 unchanged lines hidden (view full) --- 85 enable_irq(5); 86 legacy_timer_tick(1); 87 local_irq_restore(flags); 88 89 return IRQ_HANDLED; 90} 91#endif 92 |
93void __init sun3x_sched_init(irq_handler_t vector) | 93void __init sun3x_sched_init(void) |
94{ 95 96 sun3_disable_interrupts(); 97 98 99 /* Pulse enable low to get the clock started */ 100 sun3_disable_irq(5); 101 sun3_enable_irq(5); 102 sun3_enable_interrupts(); 103} | 94{ 95 96 sun3_disable_interrupts(); 97 98 99 /* Pulse enable low to get the clock started */ 100 sun3_disable_irq(5); 101 sun3_enable_irq(5); 102 sun3_enable_interrupts(); 103} |