Changeset 65b09c1 in mainline for uspace/drv/audio/hdaudio/hdactl.c


Ignore:
Timestamp:
2014-08-14T18:37:31Z (11 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1412a184
Parents:
d2d5329
Message:

Read pin configuration default. Add missing verbs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/audio/hdaudio/hdactl.c

    rd2d5329 r65b09c1  
    267267static void hda_set_corbwp(hda_t *hda, size_t wp)
    268268{
    269         ddf_msg(LVL_NOTE, "Set CORBWP = %d", wp);
     269        ddf_msg(LVL_DEBUG2, "Set CORBWP = %d", wp);
    270270        hda_reg16_write(&hda->regs->corbwp, wp);
    271271}
     
    349349        while (count > 0) {
    350350                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);
    352352                while (count > 0 && hda->ctl->rirb_rp != wp) {
    353353                        ++hda->ctl->rirb_rp;
    354354                        resp = rirb[hda->ctl->rirb_rp];
    355355
    356                         ddf_msg(LVL_NOTE, "RESPONSE resp=0x%x respex=0x%x",
     356                        ddf_msg(LVL_DEBUG2, "RESPONSE resp=0x%x respex=0x%x",
    357357                            resp.resp, resp.respex);
    358358                        if ((resp.respex & BIT_V(uint32_t, respex_unsol)) == 0) {
Note: See TracChangeset for help on using the changeset viewer.