mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
ASoC: sti: error handling bug in sti_uniperiph_cpu_dai_of()
There is a stray '!' which means the condition is never true.
Fixes: f3bd847eb0
('ASoC: sti: Add uniperipheral dai driver')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
bf9185dda8
commit
a4642e9969
@ -175,7 +175,7 @@ static int sti_uniperiph_cpu_dai_of(struct device_node *node,
|
||||
UNIPERIF_FIFO_DATA_OFFSET(uni);
|
||||
|
||||
uni->irq = platform_get_irq(priv->pdev, 0);
|
||||
if (!uni->irq < 0) {
|
||||
if (uni->irq < 0) {
|
||||
dev_err(dev, "Failed to get IRQ resource");
|
||||
return -ENXIO;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user