Changeset 6cd9aa6 in mainline for kernel/arch/arm32/src/drivers/gxemul.c
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/drivers/gxemul.c
rfa09449 r6cd9aa6 185 185 * 186 186 * @param irq IRQ information. 187 * @param arg Not used. 188 */ 189 static void gxemul_irq_handler(irq_t *irq, void *arg, ...) 187 */ 188 static void gxemul_irq_handler(irq_t *irq) 190 189 { 191 190 if ((irq->notif_cfg.notify) && (irq->notif_cfg.answerbox)) { … … 205 204 } 206 205 207 static irq_ownership_t gxemul_claim(void )206 static irq_ownership_t gxemul_claim(void *instance) 208 207 { 209 208 return IRQ_ACCEPT; … … 267 266 } 268 267 269 static irq_ownership_t gxemul_timer_claim(void )268 static irq_ownership_t gxemul_timer_claim(void *instance) 270 269 { 271 270 return IRQ_ACCEPT; … … 277 276 * @param arg Not used. 278 277 */ 279 static void gxemul_timer_irq_handler(irq_t *irq , void *arg, ...)278 static void gxemul_timer_irq_handler(irq_t *irq) 280 279 { 281 280 /* … … 371 370 if (irq) { 372 371 /* The IRQ handler was found. */ 373 irq->handler(irq , irq->arg);372 irq->handler(irq); 374 373 spinlock_unlock(&irq->lock); 375 374 } else {
Note:
See TracChangeset
for help on using the changeset viewer.