Changeset f724e82 in mainline
- 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
- Location:
- uspace
- Files:
-
- 4 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 } -
uspace/drv/pciintel/pci.c
rb2263e6a rf724e82 473 473 hw_resource_list_t hw_resources; 474 474 475 rc = get_hw_resources(dev->parent_phone, &hw_resources);475 rc = hw_res_get_resource_list(dev->parent_phone, &hw_resources); 476 476 if (rc != EOK) { 477 477 printf(NAME ": pci_add_device failed to get hw resources for " … … 497 497 delete_pci_bus_data(bus_data); 498 498 ipc_hangup(dev->parent_phone); 499 clean_hw_resource_list(&hw_resources);499 hw_res_clean_resource_list(&hw_resources); 500 500 return EADDRNOTAVAIL; 501 501 } … … 508 508 pci_bus_scan(dev, 0); 509 509 510 clean_hw_resource_list(&hw_resources);510 hw_res_clean_resource_list(&hw_resources); 511 511 512 512 return EOK; … … 537 537 { 538 538 if (dev_data != NULL) { 539 clean_hw_resource_list(&dev_data->hw_resources);539 hw_res_clean_resource_list(&dev_data->hw_resources); 540 540 free(dev_data); 541 541 } -
uspace/lib/c/generic/device/hw_res.c
rb2263e6a rf724e82 38 38 #include <malloc.h> 39 39 40 int get_hw_resources(int dev_phone, hw_resource_list_t *hw_resources)40 int hw_res_get_resource_list(int dev_phone, hw_resource_list_t *hw_resources) 41 41 { 42 42 sysarg_t count = 0; 43 43 44 44 int rc = async_req_1_1(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE), 45 GET_RESOURCE_LIST, &count);45 HW_RES_GET_RESOURCE_LIST, &count); 46 46 47 47 hw_resources->count = count; … … 64 64 } 65 65 66 bool enable_interrupt(int dev_phone)66 bool hw_res_enable_interrupt(int dev_phone) 67 67 { 68 68 int rc = async_req_1_0(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE), 69 ENABLE_INTERRUPT);69 HW_RES_ENABLE_INTERRUPT); 70 70 71 71 return rc == EOK; -
uspace/lib/c/include/device/hw_res.h
rb2263e6a rf724e82 41 41 /** HW resource provider interface */ 42 42 typedef enum { 43 GET_RESOURCE_LIST = 0,44 ENABLE_INTERRUPT43 HW_RES_GET_RESOURCE_LIST = 0, 44 HW_RES_ENABLE_INTERRUPT 45 45 } hw_res_funcs_t; 46 46 … … 84 84 } hw_resource_list_t; 85 85 86 static inline void clean_hw_resource_list(hw_resource_list_t *hw_res)86 static inline void hw_res_clean_resource_list(hw_resource_list_t *hw_res) 87 87 { 88 88 if (hw_res->resources != NULL) { … … 95 95 } 96 96 97 extern int get_hw_resources(int, hw_resource_list_t *);98 extern bool enable_interrupt(int);97 extern int hw_res_get_resource_list(int, hw_resource_list_t *); 98 extern bool hw_res_enable_interrupt(int); 99 99 100 100 #endif
Note:
See TracChangeset
for help on using the changeset viewer.