[ TOP | Recently ]

2008-07-28 amd_geode.c

フイタ
    if(pAllocInfo->PhysicalAddress & 0x0000001F)
    {
        OS_DbgMsg("DMA Memory is not 32-byte aligned! : 0x%08X\n", pAllocInfo->PhysicalAddress);
        while (pAllocInfo->PhysicalAddress & 0x0000001F)
        {
            pAllocInfo->VirtualAddress++;
            pAllocInfo->PhysicalAddress++;
        }
        OS_DbgMsg("Fixed to: 0x%08X.\n", pAllocInfo->PhysicalAddress);
    }

8k alignとかでも同じことする気なんだろうか。


EOF