Ignore:
Timestamp:
Jul 20, 2017, 2:59:04 PM (7 years ago)
Author:
max@…
Message:

Hide soclib_mmc.

File:
1 edited

Legend:

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

    r252 r257  
    9494}
    9595
     96///////////////////////////////////////////////////////////////////////////////
     97//    MMC
     98///////////////////////////////////////////////////////////////////////////////
     99
     100//////////////////////////////////////////
     101void hal_drivers_mmc_init( chdev_t  * mmc,
     102                           uint32_t   impl )
     103{
     104    if( impl == IMPL_MMC_TSR )
     105    {
     106        soclib_mmc_init( mmc );
     107    }
     108    else
     109    {
     110        assert( false , __FUNCTION__ , "undefined MMC device implementation" );
     111    }
     112}
     113
Note: See TracChangeset for help on using the changeset viewer.