Changes in uspace/drv/block/pc-floppy/main.c [832cbe7:705b65ea] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/pc-floppy/main.c
r832cbe7 r705b65ea 1 1 /* 2 * Copyright (c) 202 5Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 73 73 async_sess_t *parent_sess; 74 74 hw_res_list_parsed_t hw_res; 75 hw_res_flags_t flags; 75 76 errno_t rc; 76 77 … … 78 79 if (parent_sess == NULL) 79 80 return ENOMEM; 81 82 rc = hw_res_get_flags(parent_sess, &flags); 83 if (rc != EOK) 84 return rc; 80 85 81 86 hw_res_list_parsed_init(&hw_res);
Note:
See TracChangeset
for help on using the changeset viewer.