Changeset 13db2044 in mainline
- Timestamp:
- 2018-05-13T12:22:31Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11b285d
- Parents:
- f9597866
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/audio/hdaudio/hdactl.c
rf9597866 r13db2044 224 224 error: 225 225 if (hda->ctl->corb_virt != NULL) { 226 dmamem_unmap_anonymous( &hda->ctl->corb_virt);226 dmamem_unmap_anonymous(hda->ctl->corb_virt); 227 227 hda->ctl->corb_virt = NULL; 228 228 } … … 240 240 241 241 if (hda->ctl->corb_virt != NULL) 242 dmamem_unmap_anonymous( &hda->ctl->corb_virt);242 dmamem_unmap_anonymous(hda->ctl->corb_virt); 243 243 } 244 244 … … 319 319 error: 320 320 if (hda->ctl->rirb_virt != NULL) { 321 dmamem_unmap_anonymous( &hda->ctl->rirb_virt);321 dmamem_unmap_anonymous(hda->ctl->rirb_virt); 322 322 hda->ctl->rirb_virt = NULL; 323 323 } … … 336 336 337 337 if (hda->ctl->rirb_virt != NULL) 338 dmamem_unmap_anonymous( &hda->ctl->rirb_virt);338 dmamem_unmap_anonymous(hda->ctl->rirb_virt); 339 339 } 340 340
Note:
See TracChangeset
for help on using the changeset viewer.