Home | History | Annotate | Download | only in qemu

Lines Matching refs:io_result

317 	int io_result;
319 io_result = register_io_dev_fip(&fip_dev_con);
320 assert(io_result == 0);
322 io_result = register_io_dev_memmap(&memmap_dev_con);
323 assert(io_result == 0);
326 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
328 assert(io_result == 0);
330 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
332 assert(io_result == 0);
335 io_result = register_io_dev_sh(&sh_dev_con);
336 assert(io_result == 0);
339 io_result = io_dev_open(sh_dev_con, (uintptr_t)NULL, &sh_dev_handle);
340 assert(io_result == 0);
343 (void)io_result;