Changeset 44902 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Mar 2, 2013 2:28:37 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84072
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r44632 r44902 732 732 break; 733 733 } 734 PDMDevHlpP hysWrite(pDevIns, addr, tmpbuf, acquired);734 PDMDevHlpPCIPhysWrite(pDevIns, addr, tmpbuf, acquired); 735 735 temp -= acquired; 736 736 addr += acquired; -
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r44761 r44902 769 769 { 770 770 if (pThis->u64DPBase & DPBASE_ENABLED) 771 PDMDevHlpP hysWrite(pThis->pDevIns,772 (pThis->u64DPBase & DPBASE_ADDR_MASK) + pStreamDesc->u8Strm * 8,773 pStreamDesc->pu32Lpib, sizeof(uint32_t));771 PDMDevHlpPCIPhysWrite(pThis->pDevIns, 772 (pThis->u64DPBase & DPBASE_ADDR_MASK) + pStreamDesc->u8Strm * 8, 773 pStreamDesc->pu32Lpib, sizeof(uint32_t)); 774 774 } 775 775 DECLINLINE(uint32_t) hdaFifoWToSz(PHDASTATE pThis, PHDASTREAMTRANSFERDESC pStreamDesc) … … 955 955 { 956 956 Assert((HDA_REG_FLAG_VALUE(pThis, RIRBCTL, DMA))); 957 rc = PDMDevHlpP hysWrite(pThis->pDevIns, pThis->u64RIRBBase, pThis->pu64RirbBuf, pThis->cbRirbBuf);957 rc = PDMDevHlpPCIPhysWrite(pThis->pDevIns, pThis->u64RIRBBase, pThis->pu64RirbBuf, pThis->cbRirbBuf); 958 958 if (RT_FAILURE(rc)) 959 959 AssertRCReturn(rc, rc); … … 1848 1848 * write the HDA DMA buffer 1849 1849 */ 1850 PDMDevHlpP hysWrite(pThis->pDevIns, pBdle->u64BdleCviAddr + pBdle->u32BdleCviPos, pBdle->au8HdaBuffer, cbBackendCopy);1850 PDMDevHlpPCIPhysWrite(pThis->pDevIns, pBdle->u64BdleCviAddr + pBdle->u32BdleCviPos, pBdle->au8HdaBuffer, cbBackendCopy); 1851 1851 1852 1852 /* Don't see any reason why cb2Copy would differ from cbBackendCopy */
Note:
See TracChangeset
for help on using the changeset viewer.