Changeset 492 for trunk/kernel/devices/dev_mmc.c
- Timestamp:
- Aug 22, 2018, 11:55:48 PM (7 years ago)
- File:
- 
          - 1 edited
 
 - 
          trunk/kernel/devices/dev_mmc.c (modified) (3 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
        trunk/kernel/devices/dev_mmc.cr457 r492 67 67 xptr_t dev_xp = this->mmc_cmd.dev_xp; 68 68 69 assert( (dev_xp != XPTR_NULL) , __FUNCTION__ ,"target MMC device undefined" );69 assert( (dev_xp != XPTR_NULL) , "target MMC device undefined" ); 70 70 71 71 // get MMC device cluster identifier & local pointer … … 110 110 void * buf_ptr = GET_PTR( buf_xp ); 111 111 112 assert( (((intptr_t)buf_ptr & (CONFIG_CACHE_LINE_SIZE -1)) == 0) , __FUNCTION__ ,112 assert( (((intptr_t)buf_ptr & (CONFIG_CACHE_LINE_SIZE -1)) == 0) , 113 113 "buffer not aligned on cache line" ); 114 114 … … 151 151 void * buf_ptr = GET_PTR( buf_xp ); 152 152 153 assert( (((intptr_t)buf_ptr & (CONFIG_CACHE_LINE_SIZE -1)) == 0) , __FUNCTION__ ,153 assert( (((intptr_t)buf_ptr & (CONFIG_CACHE_LINE_SIZE -1)) == 0) , 154 154 "buffer not aligned on cache line" ); 155 155 
Note: See TracChangeset
          for help on using the changeset viewer.
      
