VirtualBox

Changes between Initial Version and Version 1 of Ticket #1907


Ignore:
Timestamp:
Aug 4, 2008 9:15:26 PM (16 years ago)
Author:
Frank Mehnert
Comment:

Thanks for the report. Fixed in SVN (actually this bug was not related to version 1.6.4). Closing.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1907

    • Property Status newclosed
    • Property Resolutionfixed
  • Ticket #1907 – Description

    initial v1  
    11In trying to do some testing with the serial driver, I noticed that there was an incorrect bit adjustment in the PCIDevSetBaseAddress method in "VBox/pci.h".  The second bit adjustment is rotating 16 bits while it should be using 8 bits.
    2 
     2{{{
    33    u32Addr = RT_H2LE_U32(u32Addr);
    44    pPciDev->config[iReg]     = u32Addr         & 0xff;
     
    66    pPciDev->config[iReg + 2] = (u32Addr >> 16) & 0xff;
    77    pPciDev->config[iReg + 3] = (u32Addr >> 24) & 0xff;
    8 
     8}}}
    99The only device in the standard source tree using this code that I'm aware of is the "Audio/DevIchAc97.cpp".
    1010 

© 2023 Oracle
ContactPrivacy policyTerms of Use