Changeset c1694b6b in mainline for uspace/drv/char/pl050/pl050.c
- Timestamp:
- 2017-12-08T21:03:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f77c1c9
- Parents:
- 9eb1ff5
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-07 18:20:13)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-08 21:03:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/pl050/pl050.c
r9eb1ff5 rc1694b6b 35 35 #include <stdio.h> 36 36 #include <errno.h> 37 #include <str_error.h> 37 38 #include <ddf/driver.h> 38 39 #include <ddf/interrupt.h> … … 223 224 rc = hw_res_enable_interrupt(pl050->parent_sess, res.irqs.irqs[0]); 224 225 if (rc != EOK) { 225 ddf_msg(LVL_ERROR, "Failed enabling interrupt . (%d)", rc);226 ddf_msg(LVL_ERROR, "Failed enabling interrupt: %s", str_error(rc)); 226 227 goto error; 227 228 } … … 349 350 rc = ddf_fun_bind(fun_a); 350 351 if (rc != EOK) { 351 ddf_msg(LVL_ERROR, "Failed binding function 'a' . (%d)", rc);352 ddf_msg(LVL_ERROR, "Failed binding function 'a': %s", str_error(rc)); 352 353 ddf_fun_destroy(fun_a); 353 354 goto error;
Note:
See TracChangeset
for help on using the changeset viewer.