Changeset f9597866 in mainline
- Timestamp:
- 2018-05-13T11:00:18Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 13db2044
- Parents:
- df96271
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/audio/hdaudio/hdactl.c
rdf96271 rf9597866 223 223 return EOK; 224 224 error: 225 if (hda->ctl->corb_virt != NULL) 225 if (hda->ctl->corb_virt != NULL) { 226 226 dmamem_unmap_anonymous(&hda->ctl->corb_virt); 227 hda->ctl->corb_virt = NULL; 228 } 227 229 return EIO; 228 230 } … … 316 318 return EOK; 317 319 error: 318 if (hda->ctl->rirb_virt != NULL) 320 if (hda->ctl->rirb_virt != NULL) { 319 321 dmamem_unmap_anonymous(&hda->ctl->rirb_virt); 322 hda->ctl->rirb_virt = NULL; 323 } 320 324 return EIO; 321 325 }
Note:
See TracChangeset
for help on using the changeset viewer.