Changeset af2a76c in mainline for uspace/drv/fb/kfb/port.c


Ignore:
Timestamp:
2014-07-13T17:25:15Z (10 years ago)
Author:
Agnieszka Tabaka <nufcia@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7493e7b
Parents:
b8e75319 (diff), 78192cc7 (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/fb/kfb/port.c

    rb8e75319 raf2a76c  
    207207};
    208208
     209static void graph_vsl_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     210{
     211        visualizer_t *vsl;
     212
     213        vsl = (visualizer_t *) ddf_fun_data_get((ddf_fun_t *)arg);
     214        graph_visualizer_connection(vsl, iid, icall, NULL);
     215}
     216
    209217int port_init(ddf_dev_t *dev)
    210218{
     
    346354                return ENOMEM;
    347355        }
    348         ddf_fun_set_ops(fun_vs, &graph_vsl_device_ops);
     356        ddf_fun_set_conn_handler(fun_vs, &graph_vsl_connection);
    349357
    350358        visualizer_t *vs = ddf_fun_data_alloc(fun_vs, sizeof(visualizer_t));
Note: See TracChangeset for help on using the changeset viewer.