Changeset 253f35a1 in mainline for kernel/arch/sparc64/src/trap/interrupt.c
- Timestamp:
- 2006-09-07T19:56:44Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab1ae2d9
- Parents:
- 801579fe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/trap/interrupt.c
r801579fe r253f35a1 43 43 #include <arch/asm.h> 44 44 #include <arch/barrier.h> 45 45 #include <print.h> 46 46 #include <genarch/kbd/z8530.h> 47 47 … … 62 62 void irq_ipc_bind_arch(unative_t irq) 63 63 { 64 /* TODO */ 64 #ifdef CONFIG_Z8530 65 z8530_belongs_to_kernel = false; 66 #endif 65 67 } 66 68 … … 83 85 * interrupt traps. Call the interrupt handler directly. 84 86 */ 87 88 if (z8530_belongs_to_kernel) 89 z8530_interrupt(); 90 else 91 ipc_irq_send_notif(0); 85 92 fhc_uart_reset(); 86 z8530_interrupt();87 93 break; 94 88 95 #endif 89 96 }
Note:
See TracChangeset
for help on using the changeset viewer.