Changeset ffa2c8ef in mainline for uspace/drv
- Timestamp:
- 2011-01-29T11:36:08Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46b881c
- Parents:
- 64d2b10
- Location:
- uspace/drv
- Files:
-
- 2 edited
-
ns8250/ns8250.c (modified) (3 diffs)
-
pciintel/pci.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ns8250/ns8250.c
r64d2b10 rffa2c8ef 256 256 257 257 if (dev->parent_phone > 0) { 258 ipc_hangup(dev->parent_phone);258 async_hangup(dev->parent_phone); 259 259 dev->parent_phone = 0; 260 260 } … … 888 888 ns8250_get_props(dev, &baud_rate, &parity, &word_length, 889 889 &stop_bits); 890 ipc_answer_4(callid, EOK, baud_rate, parity, word_length,890 async_answer_4(callid, EOK, baud_rate, parity, word_length, 891 891 stop_bits); 892 892 break; … … 899 899 ret = ns8250_set_props(dev, baud_rate, parity, word_length, 900 900 stop_bits); 901 ipc_answer_0(callid, ret);901 async_answer_0(callid, ret); 902 902 break; 903 903 904 904 default: 905 ipc_answer_0(callid, ENOTSUP);905 async_answer_0(callid, ENOTSUP); 906 906 } 907 907 } -
uspace/drv/pciintel/pci.c
r64d2b10 rffa2c8ef 478 478 "the device.\n"); 479 479 delete_pci_bus_data(bus_data); 480 ipc_hangup(dev->parent_phone);480 async_hangup(dev->parent_phone); 481 481 return rc; 482 482 } … … 496 496 printf(NAME ": failed to enable configuration ports.\n"); 497 497 delete_pci_bus_data(bus_data); 498 ipc_hangup(dev->parent_phone);498 async_hangup(dev->parent_phone); 499 499 hw_res_clean_resource_list(&hw_resources); 500 500 return EADDRNOTAVAIL;
Note:
See TracChangeset
for help on using the changeset viewer.
