Changeset 492 for trunk/hal/tsar_mips32/core/hal_drivers.c
- Timestamp:
- Aug 22, 2018, 11:55:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_drivers.c
r457 r492 49 49 uint32_t impl ) 50 50 { 51 assert( (impl == IMPL_TXT_TTY), __FUNCTION__ ,"bad implementation" );51 assert( (impl == IMPL_TXT_TTY), "bad implementation" ); 52 52 53 53 soclib_tty_init( txt ); … … 62 62 uint32_t impl ) 63 63 { 64 assert( (impl == IMPL_PIC_SCL), __FUNCTION__,"bad implementation" );64 assert( (impl == IMPL_PIC_SCL), "bad implementation" ); 65 65 66 66 soclib_pic_init( pic ); … … 85 85 uint32_t impl ) 86 86 { 87 assert( (impl == IMPL_IOB_TSR), __FUNCTION__ ,"bad implementation" );87 assert( (impl == IMPL_IOB_TSR), "bad implementation" ); 88 88 89 89 soclib_iob_init( iob ); … … 116 116 else 117 117 { 118 assert( false , __FUNCTION__ ,"undefined IOC device implementation" );118 assert( false , "undefined IOC device implementation" ); 119 119 } 120 120 } … … 128 128 uint32_t impl ) 129 129 { 130 assert( (impl == IMPL_MMC_TSR), __FUNCTION__ ,"bad implementation" );130 assert( (impl == IMPL_MMC_TSR), "bad implementation" ); 131 131 132 132 soclib_mmc_init( mmc ); … … 141 141 uint32_t impl ) 142 142 { 143 assert( (impl == IMPL_NIC_CBF), __FUNCTION__ ,"bad implementation" );143 assert( (impl == IMPL_NIC_CBF), "bad implementation" ); 144 144 145 145 soclib_nic_init( nic ); … … 154 154 uint32_t impl ) 155 155 { 156 assert( (impl == IMPL_DMA_SCL), __FUNCTION__ ,"bad implementation" );156 assert( (impl == IMPL_DMA_SCL), "bad implementation" ); 157 157 158 158 soclib_dma_init( dma );
Note: See TracChangeset
for help on using the changeset viewer.