Changes in uspace/srv/hid/kbd/port/z8530.c [acc7ce4:57d129e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/kbd/port/z8530.c
racc7ce4 r57d129e 35 35 */ 36 36 37 #include <ipc/ipc.h>38 37 #include <ipc/irc.h> 39 38 #include <async.h> … … 99 98 100 99 async_set_interrupt_received(z8530_irq_handler); 101 ipc_register_irq(inr, device_assign_devno(), inr, &z8530_kbd);100 register_irq(inr, device_assign_devno(), inr, &z8530_kbd); 102 101 103 102 return 0; … … 109 108 kbd_push_scancode(scan_code); 110 109 111 if ( cir_service)112 async_msg_1( cir_phone, IRC_CLEAR_INTERRUPT,110 if (irc_service) 111 async_msg_1(irc_phone, IRC_CLEAR_INTERRUPT, 113 112 IPC_GET_IMETHOD(*call)); 114 113 }
Note:
See TracChangeset
for help on using the changeset viewer.