Changeset 65b09c1 in mainline for uspace/drv/audio/hdaudio/hdactl.c
- Timestamp:
- 2014-08-14T18:37:31Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1412a184
- Parents:
- d2d5329
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/audio/hdaudio/hdactl.c
rd2d5329 r65b09c1 267 267 static void hda_set_corbwp(hda_t *hda, size_t wp) 268 268 { 269 ddf_msg(LVL_ NOTE, "Set CORBWP = %d", wp);269 ddf_msg(LVL_DEBUG2, "Set CORBWP = %d", wp); 270 270 hda_reg16_write(&hda->regs->corbwp, wp); 271 271 } … … 349 349 while (count > 0) { 350 350 wp = hda_get_rirbwp(hda); 351 ddf_msg(LVL_ NOTE, "hda_rirb_read: wp=%d", wp);351 ddf_msg(LVL_DEBUG2, "hda_rirb_read: wp=%d", wp); 352 352 while (count > 0 && hda->ctl->rirb_rp != wp) { 353 353 ++hda->ctl->rirb_rp; 354 354 resp = rirb[hda->ctl->rirb_rp]; 355 355 356 ddf_msg(LVL_ NOTE, "RESPONSE resp=0x%x respex=0x%x",356 ddf_msg(LVL_DEBUG2, "RESPONSE resp=0x%x respex=0x%x", 357 357 resp.resp, resp.respex); 358 358 if ((resp.respex & BIT_V(uint32_t, respex_unsol)) == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.