Changes in kernel/arch/amd64/src/amd64.c [bae43dc:3daba42e] in mainline
- File:
-
- 1 edited
-
kernel/arch/amd64/src/amd64.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/amd64.c
rbae43dc r3daba42e 45 45 #include <arch/boot/boot.h> 46 46 #include <arch/drivers/i8254.h> 47 #include <arch/drivers/i8259.h>48 47 #include <arch/syscall.h> 49 48 #include <genarch/acpi/acpi.h> 50 49 #include <genarch/drivers/ega/ega.h> 51 50 #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(); 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"; 123 133 } 124 134 }
Note:
See TracChangeset
for help on using the changeset viewer.
