Changeset 6fbd1f9 in mainline for uspace/srv/hid/display/main.c
- Timestamp:
- 2024-10-14T16:30:24Z (9 months ago)
- Branches:
- master
- Children:
- 514108e
- Parents:
- b3b79981
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/main.c
rb3b79981 r6fbd1f9 54 54 #include "display.h" 55 55 #include "dsops.h" 56 #include "ievent.h" 56 57 #include "input.h" 57 58 #include "main.h" … … 156 157 output->def_display = disp; 157 158 rc = ds_output_start_discovery(output); 159 if (rc != EOK) 160 goto error; 161 162 rc = ds_ievent_init(disp); 158 163 if (rc != EOK) 159 164 goto error; … … 211 216 ds_input_close(disp); 212 217 #endif 218 ds_ievent_fini(disp); 213 219 if (output != NULL) 214 220 ds_output_destroy(output);
Note:
See TracChangeset
for help on using the changeset viewer.