Changeset 6cd9aa6 in mainline for kernel/arch/sparc64
- Timestamp:
- 2009-02-15T23:13:55Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 17f168e
- Parents:
- fa09449
- Location:
- kernel/arch/sparc64
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/cpu_family.h
rfa09449 r6cd9aa6 81 81 /** @} 82 82 */ 83 -
kernel/arch/sparc64/include/cpu_node.h
rfa09449 r6cd9aa6 57 57 /** @} 58 58 */ 59 -
kernel/arch/sparc64/src/drivers/sgcn.c
rfa09449 r6cd9aa6 320 320 * The driver works in polled mode, so no interrupt should be handled by it. 321 321 */ 322 static irq_ownership_t sgcn_claim(void )322 static irq_ownership_t sgcn_claim(void *instance) 323 323 { 324 324 return IRQ_DECLINE; … … 328 328 * The driver works in polled mode, so no interrupt should be handled by it. 329 329 */ 330 static void sgcn_irq_handler(irq_t *irq , void *arg, ...)330 static void sgcn_irq_handler(irq_t *irq) 331 331 { 332 332 panic("Not yet implemented, SGCN works in polled mode."); -
kernel/arch/sparc64/src/trap/interrupt.c
rfa09449 r6cd9aa6 87 87 * The IRQ handler was found. 88 88 */ 89 irq->handler(irq , irq->arg);89 irq->handler(irq); 90 90 /* 91 91 * See if there is a clear-interrupt-routine and call it.
Note:
See TracChangeset
for help on using the changeset viewer.