Changeset a35b458 in mainline for uspace/drv/platform/amdm37x/main.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/platform/amdm37x/main.c
r3061bc1 ra35b458 176 176 if (fnode == NULL) 177 177 return ENOMEM; 178 178 179 179 /* Add match id */ 180 180 errno_t ret = ddf_fun_add_match_id(fnode, fun->id, fun->score); … … 183 183 return ret; 184 184 } 185 185 186 186 /* Alloc needed data */ 187 187 amdm37x_fun_t *rf = … … 195 195 /* Set provided operations to the device. */ 196 196 ddf_fun_set_ops(fnode, &amdm37x_fun_ops); 197 197 198 198 /* Register function. */ 199 199 ret = ddf_fun_bind(fnode); … … 203 203 return ret; 204 204 } 205 205 206 206 return EOK; 207 207 }
Note:
See TracChangeset
for help on using the changeset viewer.