未验证 提交 6e700f06 编写于 作者: J Jerome Brunet 提交者: Mark Brown

ASoC: meson: aiu: fix irq registration

The aiu stored the irq in an unsigned integer which may have discarded an
error returned by platform_get_irq_byname(). This is incorrect and should
have been a signed integer.

Also drop the irq error traces from the probe function as this is already
done by platform_get_irq_byname().

Fixes: 6ae9ca9c ("ASoC: meson: aiu: add i2s and spdif support")
Reported-by: Nkbuild test robot <lkp@intel.com>
Signed-off-by: NJerome Brunet <jbrunet@baylibre.com>
Link: https://lore.kernel.org/r/20200214131350.337968-4-jbrunet@baylibre.comSigned-off-by: NMark Brown <broonie@kernel.org>
上级 269f0017
......@@ -314,16 +314,12 @@ static int aiu_probe(struct platform_device *pdev)
}
aiu->i2s.irq = platform_get_irq_byname(pdev, "i2s");
if (aiu->i2s.irq < 0) {
dev_err(dev, "Can't get i2s irq\n");
if (aiu->i2s.irq < 0)
return aiu->i2s.irq;
}
aiu->spdif.irq = platform_get_irq_byname(pdev, "spdif");
if (aiu->spdif.irq < 0) {
dev_err(dev, "Can't get spdif irq\n");
if (aiu->spdif.irq < 0)
return aiu->spdif.irq;
}
ret = aiu_clk_get(dev);
if (ret)
......
......@@ -26,7 +26,7 @@ enum aiu_clk_ids {
struct aiu_interface {
struct clk_bulk_data *clks;
unsigned int clk_num;
unsigned int irq;
int irq;
};
struct aiu {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册