Changeset dd8ab1c in mainline for uspace/drv/char/sun4v-con/sun4v-con.c
- Timestamp:
- 2017-12-10T21:08:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68e5406
- Parents:
- 1afa94d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/sun4v-con/sun4v-con.c
r1afa94d rdd8ab1c 36 36 #include <ddi.h> 37 37 #include <errno.h> 38 #include <str_error.h> 38 39 #include <io/chardev_srv.h> 39 40 #include <stdbool.h> … … 92 93 (void *) &con->input_buffer); 93 94 if (rc != EOK) { 94 ddf_msg(LVL_ERROR, "Error mapping memory: % d", rc);95 ddf_msg(LVL_ERROR, "Error mapping memory: %s", str_error_name(rc)); 95 96 goto error; 96 97 } … … 101 102 (void *) &con->output_buffer); 102 103 if (rc != EOK) { 103 ddf_msg(LVL_ERROR, "Error mapping memory: % d", rc);104 ddf_msg(LVL_ERROR, "Error mapping memory: %s", str_error_name(rc)); 104 105 return rc; 105 106 }
Note:
See TracChangeset
for help on using the changeset viewer.