Re: [PATCH] crypto: cavium remove casting dma_alloc

From: David Miller
Date: Sun Jun 23 2019 - 17:34:49 EST


From: Vasyl Gomonovych <gomonovych@xxxxxxxxx>
Date: Sun, 23 Jun 2019 22:48:49 +0200

> @@ -233,7 +233,7 @@ static int alloc_command_queues(struct cpt_vf *cptvf,
>
> c_size = (rem_q_size > qcsize_bytes) ? qcsize_bytes :
> rem_q_size;
> - curr->head = (u8 *)dma_alloc_coherent(&pdev->dev,
> + curr->head = dma_alloc_coherent(&pdev->dev,
> c_size + CPT_NEXT_CHUNK_PTR_SIZE,
> &curr->dma_addr,
> GFP_KERNEL);

Please fix up the indentation of the 2nd, 3rd, and 4th line of the call
if you do this. Each of those lines should start precisely at the
first column after the openning parenthesis of the first line.

Thank you.