Changeset 071a1ddb in mainline for uspace/srv


Ignore:
Timestamp:
2017-12-08T21:17:27Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0722869, 569a51a
Parents:
9233e9d
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-08 00:30:18)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-08 21:17:27)
Message:

Return IRQ handles via a separate out parameter in all uspace code.

Location:
uspace/srv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c

    r9233e9d r071a1ddb  
    137137            (void *) ts->paddr, inr);
    138138
    139         async_irq_subscribe(inr, s3c24xx_ts_irq_handler, NULL, &ts_irq_code);
     139        async_irq_subscribe(inr, s3c24xx_ts_irq_handler, NULL, &ts_irq_code, NULL);
    140140
    141141        s3c24xx_ts_wait_for_int_mode(ts, updn_down);
  • uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c

    r9233e9d r071a1ddb  
    173173            (void *) uart->paddr, inr);
    174174
    175         async_irq_subscribe(inr, s3c24xx_uart_irq_handler, NULL, &uart_irq_code);
     175        async_irq_subscribe(inr, s3c24xx_uart_irq_handler, NULL, &uart_irq_code, NULL);
    176176
    177177        /* Enable FIFO, Tx trigger level: empty, Rx trigger level: 1 byte. */
Note: See TracChangeset for help on using the changeset viewer.