Changeset ad7a6c9 in mainline for uspace/srv/hid/fb/main.c
- Timestamp:
- 2011-03-30T13:10:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4ae90f9
- Parents:
- 6e50466 (diff), d6b81941 (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/fb/main.c
r6e50466 rad7a6c9 27 27 */ 28 28 29 #include <ipc/ipc.h>30 29 #include <ipc/services.h> 30 #include <ipc/ns.h> 31 31 #include <sysinfo.h> 32 32 #include <async.h> … … 51 51 52 52 dest = as_get_mappable_page(IPC_GET_ARG2(*call)); 53 if ( ipc_answer_1(callid, EOK, (sysarg_t) dest) == 0) {53 if (async_answer_1(callid, EOK, (sysarg_t) dest) == 0) { 54 54 if (*area) 55 55 as_area_destroy(*area); … … 114 114 return -1; 115 115 116 sysarg_t phonead; 117 if (ipc_connect_to_me(PHONE_NS, SERVICE_VIDEO, 0, 0, &phonead) != 0) 116 if (service_register(SERVICE_VIDEO) != EOK) 118 117 return -1; 119 118
Note:
See TracChangeset
for help on using the changeset viewer.