- Timestamp:
- 2011-01-11T12:04:06Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04aade50
- Parents:
- 597c948
- Location:
- kernel/arch
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/interrupt.h
r597c948 rf902d36 55 55 #define IRQ_PIC_SPUR 7 56 56 #define IRQ_MOUSE 12 57 #define IRQ_ DP8390 957 #define IRQ_NE2000 9 58 58 59 59 /* This one must have four least significant bits set to ones */ -
kernel/arch/amd64/src/amd64.c
r597c948 rf902d36 238 238 sysinfo_set_item_val(irqs_info, NULL, true); 239 239 240 sysinfo_set_item_val("netif. dp8390.inr", NULL, IRQ_DP8390);240 sysinfo_set_item_val("netif.ne2000.inr", NULL, IRQ_NE2000); 241 241 } 242 242 -
kernel/arch/ia32/include/interrupt.h
r597c948 rf902d36 55 55 #define IRQ_PIC_SPUR 7 56 56 #define IRQ_MOUSE 12 57 #define IRQ_ DP8390 557 #define IRQ_NE2000 5 58 58 59 59 /* This one must have four least significant bits set to ones */ -
kernel/arch/ia32/src/ia32.c
r597c948 rf902d36 196 196 sysinfo_set_item_val(irqs_info, NULL, true); 197 197 198 sysinfo_set_item_val("netif. dp8390.inr", NULL, IRQ_DP8390);198 sysinfo_set_item_val("netif.ne2000.inr", NULL, IRQ_NE2000); 199 199 } 200 200 -
kernel/arch/ia64/include/interrupt.h
r597c948 rf902d36 61 61 #define IRQ_KBD (0x01 + LEGACY_INTERRUPT_BASE) 62 62 #define IRQ_MOUSE (0x0c + LEGACY_INTERRUPT_BASE) 63 #define IRQ_ DP8390 (0x09 + LEGACY_INTERRUPT_BASE)63 #define IRQ_NE2000 (0x09 + LEGACY_INTERRUPT_BASE) 64 64 65 65 /** General Exception codes. */ -
kernel/arch/ia64/src/ia64.c
r597c948 rf902d36 222 222 #endif 223 223 224 sysinfo_set_item_val("netif. dp8390.inr", NULL, IRQ_DP8390);224 sysinfo_set_item_val("netif.ne2000.inr", NULL, IRQ_NE2000); 225 225 226 226 sysinfo_set_item_val("ia64_iospace", NULL, true);
Note:
See TracChangeset
for help on using the changeset viewer.