儲存庫 vbox 的更動 37269
- 時間撮記:
- 2011-5-30 下午09:15:14 (13 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r37264 r37269 1525 1525 ahciLog(("%s: write u32Value=%#010x\n", __FUNCTION__, u32Value)); 1526 1526 1527 Assert(!(u32Value & ~AHCI_PORT_FB_RESERVED)); 1528 1527 1529 pAhciPort->regFB = (u32Value & AHCI_PORT_FB_RESERVED); 1528 1530 pAhciPort->GCPhysAddrFb = AHCI_RTGCPHYS_FROM_U32(pAhciPort->regFBU, pAhciPort->regFB); … … 1570 1572 { 1571 1573 ahciLog(("%s: write u32Value=%#010x\n", __FUNCTION__, u32Value)); 1574 1575 Assert(!(u32Value & ~AHCI_PORT_CLB_RESERVED)); 1572 1576 1573 1577 pAhciPort->regCLB = (u32Value & AHCI_PORT_CLB_RESERVED); … … 2390 2394 Assert(iReg == 1); 2391 2395 rc = ahciRegisterWrite(pAhci, pAhci->regIdx, &u32, cb); 2396 if (rc == VINF_IOM_HC_MMIO_WRITE) 2397 rc = VINF_IOM_HC_IOPORT_WRITE; 2392 2398 } 2393 2399 } … … 2430 2436 Assert(iReg == 1); 2431 2437 rc = ahciRegisterRead(pAhci, pAhci->regIdx, pu32, cb); 2438 if (rc == VINF_IOM_HC_MMIO_READ) 2439 rc = VINF_IOM_HC_IOPORT_READ; 2432 2440 } 2433 2441 } … … 8160 8168 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns); 8161 8169 8170 LogFlowFunc(("pThis=%#p\n", pThis)); 8171 8162 8172 /* 8163 8173 * Validate and read configuration.
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器