Ignore:
Timestamp:
Jul 20, 2017, 3:13:58 PM (7 years ago)
Author:
max@…
Message:

Hide soclib_dma.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/tsar_mips32/core/hal_drivers.c

    r259 r261  
    130130}
    131131
     132///////////////////////////////////////////////////////////////////////////////
     133//    DMA
     134///////////////////////////////////////////////////////////////////////////////
     135
     136//////////////////////////////////////////
     137void hal_drivers_dma_init( chdev_t  * dma,
     138                           uint32_t   impl )
     139{
     140    if( impl == IMPL_DMA_SCL )
     141    {
     142        soclib_dma_init( dma );
     143    }
     144    else
     145    {
     146        assert( false , __FUNCTION__ , "undefined DMA implementation" );
     147    }
     148}
     149
Note: See TracChangeset for help on using the changeset viewer.