Changeset 73aec008 in mainline for uspace/lib
- Timestamp:
- 2011-03-31T18:23:41Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a30e435
- Parents:
- 917a8c8 (diff), 3acb285a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
r917a8c8 r73aec008 76 76 generic/io/io.c \ 77 77 generic/io/printf.c \ 78 generic/io/log.c \ 78 79 generic/io/klog.c \ 79 80 generic/io/snprintf.c \ -
uspace/lib/drv/Makefile
r917a8c8 r73aec008 35 35 generic/driver.c \ 36 36 generic/dev_iface.c \ 37 generic/log.c \ 37 38 generic/remote_hw_res.c \ 38 39 generic/remote_char_dev.c -
uspace/lib/drv/generic/driver.c
r917a8c8 r73aec008 273 273 274 274 res = driver->driver_ops->add_device(dev); 275 if (res == EOK) { 276 printf("%s: new device with handle=%" PRIun " was added.\n", 277 driver->name, dev_handle); 278 } else { 279 printf("%s: failed to add a new device with handle = %" PRIun ".\n", 280 driver->name, dev_handle); 275 if (res != EOK) 281 276 delete_device(dev); 282 }283 277 284 278 async_answer_0(iid, res);
Note:
See TracChangeset
for help on using the changeset viewer.