Changeset f724e82 in mainline for uspace/drv/ns8250/ns8250.c
- Timestamp:
- 2011-01-09T12:52:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce79069b
- Parents:
- b2263e6a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ns8250/ns8250.c
rb2263e6a rf724e82 347 347 348 348 /* Get hw resources. */ 349 ret = get_hw_resources(dev->parent_phone, &hw_resources);349 ret = hw_res_get_resource_list(dev->parent_phone, &hw_resources); 350 350 if (ret != EOK) { 351 351 printf(NAME ": failed to get hw resources for the device " … … 394 394 } 395 395 396 clean_hw_resource_list(&hw_resources);396 hw_res_clean_resource_list(&hw_resources); 397 397 return ret; 398 398 399 399 failed: 400 400 ns8250_dev_cleanup(dev); 401 clean_hw_resource_list(&hw_resources);401 hw_res_clean_resource_list(&hw_resources); 402 402 return ret; 403 403 }
Note:
See TracChangeset
for help on using the changeset viewer.