Changes in kernel/arch/amd64/src/amd64.c [3daba42e:bae43dc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/amd64.c
r3daba42e rbae43dc 45 45 #include <arch/boot/boot.h> 46 46 #include <arch/drivers/i8254.h> 47 #include <arch/drivers/i8259.h> 47 48 #include <arch/syscall.h> 48 49 #include <genarch/acpi/acpi.h> 49 50 #include <genarch/drivers/ega/ega.h> 50 51 #include <genarch/drivers/i8042/i8042.h> 51 #include <genarch/drivers/i8259/i8259.h>52 52 #include <genarch/drivers/ns16550/ns16550.h> 53 53 #include <genarch/drivers/legacy/ia32/io.h> … … 120 120 121 121 /* PIC */ 122 i8259_init((i8259_t *) I8259_PIC0_BASE, 123 (i8259_t *) I8259_PIC1_BASE, IVT_IRQBASE); 124 125 /* 126 * Set the enable/disable IRQs handlers. 127 * Set the End-of-Interrupt handler. 128 */ 129 enable_irqs_function = pic_enable_irqs; 130 disable_irqs_function = pic_disable_irqs; 131 eoi_function = pic_eoi; 132 irqs_info = "i8259"; 122 i8259_init(); 133 123 } 134 124 }
Note:
See TracChangeset
for help on using the changeset viewer.