Changeset 3772af6 in mainline for kernel/generic/src/ddi/ddi.c


Ignore:
Timestamp:
2013-09-09T20:25:27Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ee7f78a
Parents:
c501bc4
Message:

remove the special-purpose DMA zone (including the ZONE_DMA and FRAME_DMA flags)
this most probably breaks Sound Blaster 16, but it is reported to be broken anyhow
a proper platform-independent DMA memory allocation is in the works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ddi/ddi.c

    rc501bc4 r3772af6  
    336336                order = fnzb(pages - 1) + 1;
    337337       
    338         *phys = frame_alloc_noreserve(order, FRAME_DMA);
     338        *phys = frame_alloc_noreserve(order, 0);
    339339        if (*phys == NULL)
    340340                return ENOMEM;
Note: See TracChangeset for help on using the changeset viewer.