mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 12:50:52 +07:00
dma/timberdale: simplify conditional
Simplify: ((a && b) || (!a && !b)) => (a == b) Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Acked-by: Jack Stone <jwjstone@fastmail.fm> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
parent
5fc6d897fd
commit
9cb047d4d1
@ -759,7 +759,7 @@ static int __devinit td_probe(struct platform_device *pdev)
|
||||
pdata->channels + i;
|
||||
|
||||
/* even channels are RX, odd are TX */
|
||||
if (((i % 2) && pchan->rx) || (!(i % 2) && !pchan->rx)) {
|
||||
if ((i % 2) == pchan->rx) {
|
||||
dev_err(&pdev->dev, "Wrong channel configuration\n");
|
||||
err = -EINVAL;
|
||||
goto err_tasklet_kill;
|
||||
|
Loading…
Reference in New Issue
Block a user