Commit c48f6ac1 authored by Christian Lütke-Stetzkamp's avatar Christian Lütke-Stetzkamp Committed by Greg Kroah-Hartman

staging: mt7621-dma: Remove assignment in if

Fixes checkpatch error: ASSIGN_IN_IF by adding an inner if in the else
path, this also avoids calling vchan_find_desc when not needed.
Signed-off-by: default avatarChristian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c1a3a340
......@@ -689,8 +689,11 @@ static enum dma_status gdma_dma_tx_status(struct dma_chan *c,
((chan->next_sg - 1) * desc->sg[0].len);
else
state->residue = desc->residue;
} else if ((vdesc = vchan_find_desc(&chan->vchan, cookie)))
state->residue = to_gdma_dma_desc(vdesc)->residue;
} else {
vdesc = vchan_find_desc(&chan->vchan, cookie);
if (vdesc)
state->residue = to_gdma_dma_desc(vdesc)->residue;
}
spin_unlock_irqrestore(&chan->vchan.lock, flags);
dev_dbg(c->device->dev, "tx residue %d bytes\n", state->residue);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment