9
0
Fork 0

blackfin: Remove unneeded assignment

Assignment of function parameter has no effect outside the function.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2013-07-07 16:27:15 +04:00 committed by Sascha Hauer
parent f457f683cb
commit 0a9ec16872
1 changed files with 1 additions and 1 deletions

View File

@ -176,6 +176,6 @@ void *dma_memcpy(void * dest,const void *src,size_t count)
*pMDMA_D0_IRQ_STATUS |= (DMA_DONE | DMA_ERR);
dest += count;
src += count;
return dest;
}