Changeset e28175d in mainline for kernel/arch/mips32/src/mach/malta/malta.c
- Timestamp:
- 2020-03-15T10:44:02Z (6 years ago)
- Parents:
- b401b33 (diff), 44dde42 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- heiducteam <tristanided@…> (2020-03-15 10:44:02)
- git-committer:
- GitHub <noreply@…> (2020-03-15 10:44:02)
- File:
-
- 1 edited
-
kernel/arch/mips32/src/mach/malta/malta.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/mach/malta/malta.c
rb401b33 re28175d 75 75 { 76 76 uint8_t isa_irq = host2uint32_t_le(pio_read_32(GT64120_PCI0_INTACK)); 77 if ( pic_is_spurious(isa_irq)) {78 pic_handle_spurious(isa_irq);77 if (i8259_is_spurious(isa_irq)) { 78 i8259_handle_spurious(isa_irq); 79 79 #ifdef CONFIG_DEBUG 80 80 log(LF_ARCH, LVL_DEBUG, "cpu%u: PIC spurious interrupt %u", … … 93 93 #endif 94 94 } 95 pic_eoi(isa_irq);95 i8259_eoi(isa_irq); 96 96 } 97 97 … … 146 146 indev_t *srln = srln_wire(srln_instance, sink); 147 147 ns16550_wire(tty_instance, srln); 148 pic_enable_irqs(1 << TTY_ISA_IRQ);148 i8259_enable_irqs(1 << TTY_ISA_IRQ); 149 149 } 150 150 }
Note:
See TracChangeset
for help on using the changeset viewer.
