Changes in uspace/drv/test/test1/test1.c [b7fd2a0:74017ce] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/test/test1/test1.c
rb7fd2a0 r74017ce 40 40 #include "test1.h" 41 41 42 static errno_t test1_dev_add(ddf_dev_t *dev);43 static errno_t test1_dev_remove(ddf_dev_t *dev);44 static errno_t test1_dev_gone(ddf_dev_t *dev);45 static errno_t test1_fun_online(ddf_fun_t *fun);46 static errno_t test1_fun_offline(ddf_fun_t *fun);42 static int test1_dev_add(ddf_dev_t *dev); 43 static int test1_dev_remove(ddf_dev_t *dev); 44 static int test1_dev_gone(ddf_dev_t *dev); 45 static int test1_fun_online(ddf_fun_t *fun); 46 static int test1_fun_offline(ddf_fun_t *fun); 47 47 48 48 static driver_ops_t driver_ops = { … … 73 73 * @param score Device match score. 74 74 */ 75 static errno_t register_fun_verbose(ddf_dev_t *parent, const char *message,75 static int register_fun_verbose(ddf_dev_t *parent, const char *message, 76 76 const char *name, const char *match_id, int match_score, 77 errno_t expected_rc, ddf_fun_t **pfun)77 int expected_rc, ddf_fun_t **pfun) 78 78 { 79 79 ddf_fun_t *fun = NULL; 80 errno_t rc;80 int rc; 81 81 82 82 ddf_msg(LVL_DEBUG, "Registering function `%s': %s.", name, message); … … 141 141 * @return Error code reporting success of the operation. 142 142 */ 143 static errno_t test1_dev_add(ddf_dev_t *dev)143 static int test1_dev_add(ddf_dev_t *dev) 144 144 { 145 145 ddf_fun_t *fun_a; 146 146 test1_t *test1; 147 147 const char *dev_name; 148 errno_t rc;148 int rc; 149 149 150 150 dev_name = ddf_dev_get_name(dev); … … 196 196 } 197 197 198 static errno_t fun_remove(ddf_fun_t *fun, const char *name)199 { 200 errno_t rc;198 static int fun_remove(ddf_fun_t *fun, const char *name) 199 { 200 int rc; 201 201 202 202 ddf_msg(LVL_DEBUG, "fun_remove(%p, '%s')", fun, name); … … 217 217 } 218 218 219 static errno_t fun_unbind(ddf_fun_t *fun, const char *name)220 { 221 errno_t rc;219 static int fun_unbind(ddf_fun_t *fun, const char *name) 220 { 221 int rc; 222 222 223 223 ddf_msg(LVL_DEBUG, "fun_unbind(%p, '%s')", fun, name); … … 232 232 } 233 233 234 static errno_t test1_dev_remove(ddf_dev_t *dev)234 static int test1_dev_remove(ddf_dev_t *dev) 235 235 { 236 236 test1_t *test1 = (test1_t *)ddf_dev_data_get(dev); 237 errno_t rc;237 int rc; 238 238 239 239 ddf_msg(LVL_DEBUG, "test1_dev_remove(%p)", dev); … … 260 260 } 261 261 262 static errno_t test1_dev_gone(ddf_dev_t *dev)262 static int test1_dev_gone(ddf_dev_t *dev) 263 263 { 264 264 test1_t *test1 = (test1_t *)ddf_dev_data_get(dev); 265 errno_t rc;265 int rc; 266 266 267 267 ddf_msg(LVL_DEBUG, "test1_dev_remove(%p)", dev); … … 288 288 } 289 289 290 static errno_t test1_fun_online(ddf_fun_t *fun)290 static int test1_fun_online(ddf_fun_t *fun) 291 291 { 292 292 ddf_msg(LVL_DEBUG, "test1_fun_online()"); … … 294 294 } 295 295 296 static errno_t test1_fun_offline(ddf_fun_t *fun)296 static int test1_fun_offline(ddf_fun_t *fun) 297 297 { 298 298 ddf_msg(LVL_DEBUG, "test1_fun_offline()");
Note:
See TracChangeset
for help on using the changeset viewer.