Changes in uspace/lib/device/src/devman.c [832cbe7:edeee9f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/device/src/devman.c
r832cbe7 redeee9f 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda3 2 * Copyright (c) 2007 Josef Cejka 3 * Copyright (c) 2013 Jiri Svoboda 4 4 * Copyright (c) 2010 Lenka Trochtova 5 5 * All rights reserved. … … 343 343 } 344 344 345 errno_t devman_drv_fun_wait_stable(devman_handle_t funh)346 {347 async_exch_t *exch = devman_exchange_begin(INTERFACE_DDF_DRIVER);348 if (exch == NULL)349 return ENOMEM;350 351 errno_t retval = async_req_1_0(exch, DEVMAN_DRV_FUN_WAIT_STABLE, funh);352 353 devman_exchange_end(exch);354 return retval;355 }356 357 345 async_sess_t *devman_parent_device_connect(devman_handle_t handle, 358 346 unsigned int flags)
Note:
See TracChangeset
for help on using the changeset viewer.