Changeset d57ff6f in mainline for uspace/drv/fb/amdm37x_dispc/main.c
- Timestamp:
- 2013-01-20T20:02:01Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e3bfab
- Parents:
- 079cacf
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/fb/amdm37x_dispc/main.c
r079cacf rd57ff6f 1 1 /* 2 * Copyright (c) 2013 Jan Vesely 2 3 * Copyright (c) 2011 Petr Koupy 3 4 * All rights reserved. … … 40 41 #include <task.h> 41 42 #include <graph.h> 42 #include <ops/graph_dev.h>43 43 #include "port.h" 44 #include "kfb.h" 44 45 #define NAME "amdm37x_dispc" 45 46 46 47 static int kgraph_dev_add(ddf_dev_t *dev) … … 60 61 }; 61 62 62 static graph_dev_ops_t graph_vsl_dev_ops = {63 .connect = (connect_func) &graph_visualizer_connection64 };65 66 ddf_dev_ops_t graph_vsl_device_ops = {67 .interfaces[GRAPH_DEV_IFACE] = &graph_vsl_dev_ops68 };69 70 static graph_dev_ops_t graph_rnd_dev_ops = {71 .connect = (connect_func) &graph_renderer_connection72 };73 74 ddf_dev_ops_t graph_rnd_device_ops = {75 .interfaces[GRAPH_DEV_IFACE] = &graph_rnd_dev_ops76 };77 78 63 int main(int argc, char *argv[]) 79 64 {
Note:
See TracChangeset
for help on using the changeset viewer.