Skip to content

Commit

Permalink
Merge pull request xbmc#17605 from lrusak/dma-heap-path
Browse files Browse the repository at this point in the history
CDMAHeapBufferObject: add /dev/dma_heap/linux,cma path
  • Loading branch information
lrusak authored and Maven85 committed Apr 8, 2020
1 parent ed185f4 commit b7dd86f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/utils/DMAHeapBufferObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
namespace
{

std::array<const char*, 2> DMA_HEAP_PATHS = {
std::array<const char*, 3> DMA_HEAP_PATHS = {
"/dev/dma_heap/reserved",
"/dev/dma_heap/linux,cma",
"/dev/dma_heap/system",
};

Expand Down

0 comments on commit b7dd86f

Please sign in to comment.