Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/fb/amdm37x_dispc/main.c

    r8e4a408 rc7d11a0b  
    3535 */
    3636
    37 #include <ddf/driver.h>
    3837#include <ddf/log.h>
    3938#include <errno.h>
    4039#include <str_error.h>
    4140#include <stdio.h>
     41#include <ops/graph_dev.h>
    4242#include <graph.h>
    4343
     
    4646#define NAME  "amdm37x_dispc"
    4747
    48 static void graph_vsl_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
    49 {
    50         visualizer_t *vsl;
     48static graph_dev_ops_t graph_vsl_dev_ops = {
     49        .connect = (connect_func) &graph_visualizer_connection
     50};
    5151
    52         vsl = (visualizer_t *) ddf_fun_data_get((ddf_fun_t *)arg);
    53         graph_visualizer_connection(vsl, iid, icall, NULL);
    54 }
     52static ddf_dev_ops_t graph_fun_ops = {
     53        .interfaces[GRAPH_DEV_IFACE] = &graph_vsl_dev_ops
     54};
    5555
    5656static int amdm37x_dispc_dev_add(ddf_dev_t *dev)
     
    7474        vis->reg_svc_handle = ddf_fun_get_handle(fun);
    7575
    76         ddf_fun_set_conn_handler(fun, graph_vsl_connection);
     76        ddf_fun_set_ops(fun, &graph_fun_ops);
    7777        /* Hw part */
    7878        amdm37x_dispc_t *dispc =
Note: See TracChangeset for help on using the changeset viewer.