Changes in uspace/drv/infrastructure/root/root.c [428bd07:3e6a98c5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/infrastructure/root/root.c
r428bd07 r3e6a98c5 208 208 /* 209 209 * Register virtual devices root. 210 * We warn onerror occurrence because virtual devices shall not be210 * We ignore error occurrence because virtual devices shall not be 211 211 * vital for the system. 212 212 */ 213 int res = add_virtual_root_fun(dev); 214 if (res != EOK) 215 ddf_msg(LVL_WARN, "Failed to add virtual child."); 213 (void) add_virtual_root_fun(dev); 216 214 217 215 /* Register root device's children. */ 218 res = add_platform_fun(dev);216 int res = add_platform_fun(dev); 219 217 if (EOK != res) 220 218 ddf_msg(LVL_ERROR, "Failed adding child device for platform.");
Note:
See TracChangeset
for help on using the changeset viewer.