Changeset ebcb05a in mainline for uspace/drv/rootpc/rootpc.c
- Timestamp:
- 2011-04-01T19:00:51Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 969585f, ea53529
- Parents:
- bdbb6f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/rootpc/rootpc.c
rbdbb6f6 rebcb05a 120 120 rootpc_fun_t *fun) 121 121 { 122 ddf_msg(LVL_DEBUG, "Adding new function '%s'. \n", name);122 ddf_msg(LVL_DEBUG, "Adding new function '%s'.", name); 123 123 124 124 ddf_fun_t *fnode = NULL; … … 146 146 /* Register function. */ 147 147 if (ddf_fun_bind(fnode) != EOK) { 148 ddf_msg(LVL_ERROR, "Failed binding function %s. \n", name);148 ddf_msg(LVL_ERROR, "Failed binding function %s.", name); 149 149 goto failure; 150 150 } … … 159 159 ddf_fun_destroy(fnode); 160 160 161 ddf_msg(LVL_ERROR, "Failed adding function '%s'. \n", name);161 ddf_msg(LVL_ERROR, "Failed adding function '%s'.", name); 162 162 163 163 return false; … … 177 177 static int rootpc_add_device(ddf_dev_t *dev) 178 178 { 179 ddf_msg(LVL_DEBUG, "rootpc_add_device, device handle = %d \n",179 ddf_msg(LVL_DEBUG, "rootpc_add_device, device handle = %d", 180 180 (int)dev->handle); 181 181 182 182 /* Register functions. */ 183 183 if (!rootpc_add_functions(dev)) { 184 ddf_msg(LVL_ERROR, "Failed to add functions for PC platform. \n");184 ddf_msg(LVL_ERROR, "Failed to add functions for PC platform."); 185 185 } 186 186
Note:
See TracChangeset
for help on using the changeset viewer.