Changeset 8e7c9fe in mainline for uspace/drv/fb/amdm37x_dispc/main.c
- Timestamp:
- 2014-09-12T03:45:25Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (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/drv/fb/amdm37x_dispc/main.c
r3eb0c85 r8e7c9fe 35 35 */ 36 36 37 #include <ddf/driver.h> 37 38 #include <ddf/log.h> 38 39 #include <errno.h> 39 40 #include <str_error.h> 40 41 #include <stdio.h> 41 #include <ops/graph_dev.h>42 42 #include <graph.h> 43 43 … … 46 46 #define NAME "amdm37x_dispc" 47 47 48 static graph_dev_ops_t graph_vsl_dev_ops = {49 .connect = (connect_func) &graph_visualizer_connection 50 };48 static void graph_vsl_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg) 49 { 50 visualizer_t *vsl; 51 51 52 static ddf_dev_ops_t graph_fun_ops = { 53 .interfaces[GRAPH_DEV_IFACE] = &graph_vsl_dev_ops54 } ;52 vsl = (visualizer_t *) ddf_fun_data_get((ddf_fun_t *)arg); 53 graph_visualizer_connection(vsl, iid, icall, NULL); 54 } 55 55 56 56 static int amdm37x_dispc_dev_add(ddf_dev_t *dev) … … 74 74 vis->reg_svc_handle = ddf_fun_get_handle(fun); 75 75 76 ddf_fun_set_ ops(fun, &graph_fun_ops);76 ddf_fun_set_conn_handler(fun, graph_vsl_connection); 77 77 /* Hw part */ 78 78 amdm37x_dispc_t *dispc =
Note:
See TracChangeset
for help on using the changeset viewer.