Example #1
0
int DRV_frameCopyExit()
{
  OSA_mutexDelete(&gDRV_frameCopyObj.lock);
  DRV_dmaClose(&gDRV_frameCopyObj.dmaHndl);
  
  return OSA_SOK;
}
Example #2
0
/**
 * @brief	Close a memory copy
 * @param	none
 * @return	0 : success ; -1 : fail
 */
int CacheMng_MemCpy_close(void)
{
#if	CACHEMNG_DMA
    DRV_dmaClose(&dmaHndl);
#endif
    return 0;

}
Example #3
0
/**
 * @brief	Close memory copy
 * @param	none
 * @return	0 : success
 */
int MemMng_memcpy_close(void)
{
#if	MEMMNG_DMA

	DRV_dmaClose(&dmaHndl);

#endif
	return 0;

}