Changeset 59444 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Jan 22, 2016 3:40:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105188
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r59442 r59444 2442 2442 #ifdef IN_RING3 2443 2443 #ifdef LOG_ENABLED 2444 static void hdaBDLEDumpAll(PHDASTATE pThis, uint64_t u64B aseDMA, uint16_t cBDLE)2445 { 2446 LogFlowFunc(("BDLEs @ 0x%x (%RU16):\n", u64B aseDMA, cBDLE));2447 if (!u64B aseDMA)2444 static void hdaBDLEDumpAll(PHDASTATE pThis, uint64_t u64BDLBase, uint16_t cBDLE) 2445 { 2446 LogFlowFunc(("BDLEs @ 0x%x (%RU16):\n", u64BDLBase, cBDLE)); 2447 if (!u64BDLBase) 2448 2448 return; 2449 2449 … … 2452 2452 { 2453 2453 uint8_t bdle[16]; /** @todo Use a define. */ 2454 PDMDevHlpPhysRead(pThis->CTX_SUFF(pDevIns), u64B aseDMA+ i * 16, bdle, 16); /** @todo Use a define. */2454 PDMDevHlpPhysRead(pThis->CTX_SUFF(pDevIns), u64BDLBase + i * 16, bdle, 16); /** @todo Use a define. */ 2455 2455 2456 2456 uint64_t addr = *(uint64_t *)bdle; … … 2469 2469 return; 2470 2470 2471 LogFlowFunc(("DMA counters:\n" , cbBDLE));2472 2473 for (int i = 0; i < 8; i++) /** @todo Use a define for MAX_STREAMS! */2471 LogFlowFunc(("DMA counters:\n")); 2472 2473 for (int i = 0; i < cBDLE; i++) 2474 2474 { 2475 2475 uint32_t uDMACnt;
Note:
See TracChangeset
for help on using the changeset viewer.