Changes in uspace/srv/devman/driver.c [25a179e:81685dd9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/driver.c
r25a179e r81685dd9 309 309 { 310 310 async_exch_t *exch; 311 int retval;311 sysarg_t retval; 312 312 313 313 log_msg(LOG_DEFAULT, LVL_DEBUG, "stop_driver(drv=\"%s\")", drv->name); … … 591 591 592 592 /* Send the device name to the driver. */ 593 int rc = async_data_write_start(exch, dev->pfun->name,593 sysarg_t rc = async_data_write_start(exch, dev->pfun->name, 594 594 str_size(dev->pfun->name) + 1); 595 595 … … 621 621 { 622 622 async_exch_t *exch; 623 int retval;623 sysarg_t retval; 624 624 driver_t *drv; 625 625 devman_handle_t handle; … … 644 644 { 645 645 async_exch_t *exch; 646 int retval;646 sysarg_t retval; 647 647 driver_t *drv; 648 648 devman_handle_t handle; … … 667 667 { 668 668 async_exch_t *exch; 669 int retval;669 sysarg_t retval; 670 670 driver_t *drv; 671 671 devman_handle_t handle; … … 695 695 { 696 696 async_exch_t *exch; 697 int retval;697 sysarg_t retval; 698 698 driver_t *drv; 699 699 devman_handle_t handle;
Note:
See TracChangeset
for help on using the changeset viewer.