Changeset 8e7c9fe in mainline for uspace/drv/fb/kfb/port.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/kfb/port.c
r3eb0c85 r8e7c9fe 207 207 }; 208 208 209 static 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 209 217 int port_init(ddf_dev_t *dev) 210 218 { … … 333 341 334 342 kfb.size = scanline * height; 343 kfb.addr = AS_AREA_ANY; 344 335 345 rc = physmem_map(paddr + offset, 336 346 ALIGN_UP(kfb.size, PAGE_SIZE) >> PAGE_WIDTH, … … 344 354 return ENOMEM; 345 355 } 346 ddf_fun_set_ ops(fun_vs, &graph_vsl_device_ops);356 ddf_fun_set_conn_handler(fun_vs, &graph_vsl_connection); 347 357 348 358 visualizer_t *vs = ddf_fun_data_alloc(fun_vs, sizeof(visualizer_t));
Note:
See TracChangeset
for help on using the changeset viewer.