Changes in uspace/srv/hid/kbd/port/ns16550.c [8add9ca5:d9fae235] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/kbd/port/ns16550.c
r8add9ca5 rd9fae235 35 35 */ 36 36 37 #include <ipc/irc.h> 37 #include <ipc/ipc.h> 38 #include <ipc/bus.h> 38 39 #include <async.h> 39 40 #include <sysinfo.h> … … 110 111 111 112 async_set_interrupt_received(ns16550_irq_handler); 112 register_irq(inr, device_assign_devno(), inr, &ns16550_kbd);113 ipc_register_irq(inr, device_assign_devno(), inr, &ns16550_kbd); 113 114 114 115 return pio_enable((void *) ns16550_physical, 8, &vaddr); … … 121 122 122 123 if (cir_service) 123 async_msg_1(cir_phone, IRC_CLEAR_INTERRUPT,124 IPC_GET_ IMETHOD(*call));124 async_msg_1(cir_phone, BUS_CLEAR_INTERRUPT, 125 IPC_GET_METHOD(*call)); 125 126 } 126 127
Note:
See TracChangeset
for help on using the changeset viewer.