Changeset 24abb85d in mainline for uspace/srv/hw
- Timestamp:
- 2017-08-18T23:27:08Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d76cfc
- Parents:
- e9d15d9
- Location:
- uspace/srv/hw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/bus/cuda_adb/cuda_adb.c
re9d15d9 r24abb85d 282 282 cuda_irq_code.ranges[0].base = (uintptr_t) instance->cuda_physical; 283 283 cuda_irq_code.cmds[0].addr = (void *) &((cuda_t *) instance->cuda_physical)->ifr; 284 async_irq_subscribe(10, device_assign_devno(), cuda_irq_handler, NULL, 285 &cuda_irq_code); 284 async_irq_subscribe(10, cuda_irq_handler, NULL, &cuda_irq_code); 286 285 287 286 /* Enable SR interrupt. */ -
uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c
re9d15d9 r24abb85d 193 193 (void *) uart->paddr, inr); 194 194 195 async_irq_subscribe(inr, device_assign_devno(), s3c24xx_uart_irq_handler, 196 NULL, &uart_irq_code); 195 async_irq_subscribe(inr, s3c24xx_uart_irq_handler, NULL, &uart_irq_code); 197 196 198 197 /* Enable FIFO, Tx trigger level: empty, Rx trigger level: 1 byte. */
Note:
See TracChangeset
for help on using the changeset viewer.