Changeset d5ba17f in mainline for uspace/drv/test/test1/test1.c
- Timestamp:
- 2011-11-18T15:32:24Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 528e5b3
- Parents:
- b12ca16 (diff), 0c0f823b (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/test/test1/test1.c
rb12ca16 rd5ba17f 40 40 #include "test1.h" 41 41 42 static int test1_ add_device(ddf_dev_t *dev);42 static int test1_dev_add(ddf_dev_t *dev); 43 43 static int test1_dev_remove(ddf_dev_t *dev); 44 44 static int test1_dev_gone(ddf_dev_t *dev); … … 47 47 48 48 static driver_ops_t driver_ops = { 49 . add_device = &test1_add_device,49 .dev_add = &test1_dev_add, 50 50 .dev_remove = &test1_dev_remove, 51 51 .dev_gone = &test1_dev_gone, … … 141 141 * @return Error code reporting success of the operation. 142 142 */ 143 static int test1_ add_device(ddf_dev_t *dev)143 static int test1_dev_add(ddf_dev_t *dev) 144 144 { 145 145 ddf_fun_t *fun_a; … … 147 147 int rc; 148 148 149 ddf_msg(LVL_DEBUG, " add_device(name=\"%s\", handle=%d)",149 ddf_msg(LVL_DEBUG, "dev_add(name=\"%s\", handle=%d)", 150 150 dev->name, (int) dev->handle); 151 151
Note:
See TracChangeset
for help on using the changeset viewer.