Changeset eb522e8 in mainline for uspace/srv/hid/adb_mouse/adb_dev.c
- Timestamp:
- 2011-06-01T08:43:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6c1f1
- Parents:
- 9e2e715 (diff), e51a514 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/adb_mouse/adb_dev.c
r9e2e715 reb522e8 34 34 */ 35 35 36 #include <ipc/ipc.h>37 36 #include <ipc/adb.h> 38 37 #include <async.h> … … 68 67 69 68 /* NB: The callback connection is slotted for removal */ 70 ipcarg_t phonehash; 71 if (ipc_connect_to_me(dev_phone, 0, 0, 0, &phonehash) != 0) { 69 if (async_connect_to_me(dev_phone, 0, 0, 0, adb_dev_events) != 0) { 72 70 printf(NAME ": Failed to create callback from device\n"); 73 71 return false; 74 72 } 75 76 async_new_connection(phonehash, 0, NULL, adb_dev_events); 77 73 78 74 return 0; 79 75 } … … 89 85 int retval; 90 86 91 switch (IPC_GET_ METHOD(call)) {87 switch (IPC_GET_IMETHOD(call)) { 92 88 case IPC_M_PHONE_HUNGUP: 93 89 /* TODO: Handle hangup */ … … 99 95 retval = ENOENT; 100 96 } 101 ipc_answer_0(callid, retval);97 async_answer_0(callid, retval); 102 98 } 103 99 }
Note:
See TracChangeset
for help on using the changeset viewer.