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.