Changeset 71688 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 5, 2018 3:11:16 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121775
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDACommon.cpp
r70964 r71688 449 449 450 450 /* Check controller interrupts (RIRB, STATEST). */ 451 if ( (HDA_REG(pThis, RIRBSTS) & HDA_REG(pThis, RIRBCTL) & (HDA_RIRBCTL_ROIC | HDA_RIRBCTL_RINTCTL)) 452 /* SDIN State Change Status Flags (SCSF). */ 453 || (HDA_REG(pThis, STATESTS) & HDA_STATESTS_SCSF_MASK)) 451 if (HDA_REG(pThis, RIRBSTS) & HDA_REG(pThis, RIRBCTL) & (HDA_RIRBCTL_ROIC | HDA_RIRBCTL_RINTCTL)) 454 452 { 455 453 intSts |= HDA_INTSTS_CIS; /* Set the Controller Interrupt Status (CIS). */ 456 454 } 457 455 456 /* Check SDIN State Change Status Flags. */ 458 457 if (HDA_REG(pThis, STATESTS) & HDA_REG(pThis, WAKEEN)) 459 458 {
Note:
See TracChangeset
for help on using the changeset viewer.