Changes in uspace/srv/hid/kbd/port/ns16550.c [57d129e:acc7ce4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/kbd/port/ns16550.c
r57d129e racc7ce4 35 35 */ 36 36 37 #include <ipc/ipc.h> 37 38 #include <ipc/irc.h> 38 39 #include <async.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); … … 120 121 kbd_push_scancode(scan_code); 121 122 122 if ( irc_service)123 async_msg_1( irc_phone, IRC_CLEAR_INTERRUPT,123 if (cir_service) 124 async_msg_1(cir_phone, IRC_CLEAR_INTERRUPT, 124 125 IPC_GET_IMETHOD(*call)); 125 126 }
Note:
See TracChangeset
for help on using the changeset viewer.