Changeset 9be30cdf in mainline for uspace/lib/drv/generic/remote_graph_dev.c
- Timestamp:
- 2013-12-31T02:50:45Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1ee46f
- Parents:
- 208b5f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_graph_dev.c
r208b5f5 r9be30cdf 35 35 #include <errno.h> 36 36 #include <async.h> 37 #include <macros.h> 37 38 38 39 #include "ops/graph_dev.h" … … 41 42 static void remote_graph_connect(ddf_fun_t *, void *, ipc_callid_t, ipc_call_t *); 42 43 43 static remote_iface_func_ptr_t remote_graph_dev_iface_ops[] = {44 static const remote_iface_func_ptr_t remote_graph_dev_iface_ops[] = { 44 45 &remote_graph_connect 45 46 }; 46 47 47 48 remote_iface_t remote_graph_dev_iface = { 48 .method_count = sizeof(remote_graph_dev_iface_ops) / 49 sizeof(remote_iface_func_ptr_t), 49 .method_count = ARRAY_SIZE(remote_graph_dev_iface_ops), 50 50 .methods = remote_graph_dev_iface_ops 51 51 };
Note:
See TracChangeset
for help on using the changeset viewer.