Changeset 91b60499 in mainline for kernel/arch/ia32/src
- Timestamp:
- 2017-09-30T06:29:42Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 300f4c4
- Parents:
- d076f16 (diff), 6636fb19 (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. - Location:
- kernel/arch/ia32/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/drivers/i8254.c
rd076f16 r91b60499 51 51 #include <arch.h> 52 52 #include <ddi/irq.h> 53 #include <ddi/device.h>54 53 55 54 #define CLK_PORT1 ((ioport8_t *) 0x40U) … … 86 85 irq_initialize(&i8254_irq); 87 86 i8254_irq.preack = true; 88 i8254_irq.devno = device_assign_devno();89 87 i8254_irq.inr = IRQ_CLK; 90 88 i8254_irq.claim = i8254_claim; -
kernel/arch/ia32/src/smp/apic.c
rd076f16 r91b60499 47 47 #include <arch.h> 48 48 #include <ddi/irq.h> 49 #include <ddi/device.h>50 49 51 50 #ifdef CONFIG_SMP … … 190 189 irq_initialize(&l_apic_timer_irq); 191 190 l_apic_timer_irq.preack = true; 192 l_apic_timer_irq.devno = device_assign_devno();193 191 l_apic_timer_irq.inr = IRQ_CLK; 194 192 l_apic_timer_irq.claim = l_apic_timer_claim;
Note:
See TracChangeset
for help on using the changeset viewer.