diff options
| author | Jiapeng Chong <[email protected]> | 2022-03-09 08:49:29 +0800 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2022-03-09 17:34:56 +0000 |
| commit | c8ee0c37c045ccc1fbbe074e8af5031b36861cd2 (patch) | |
| tree | b5e3e051cb82145d386d0469b14c31e4195e8919 | |
| parent | 9779a8e61a83916ccfe7e6ddabcc7638d4bc2ae1 (diff) | |
ASoC: SOF: amd: Remove unneeded semicolon
Fix the following coccicheck warnings:
./sound/soc/sof/amd/acp.c:280:3-4: Unneeded semicolon.
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/sof/amd/acp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sof/amd/acp.c b/sound/soc/sof/amd/acp.c index 66ca05545be2..71d71c152342 100644 --- a/sound/soc/sof/amd/acp.c +++ b/sound/soc/sof/amd/acp.c @@ -277,7 +277,7 @@ static irqreturn_t acp_irq_thread(int irq, void *context) dev_err(sdev->dev, "%s: Failed to acquire HW lock\n", __func__); return IRQ_NONE; } - }; + } sof_ops(sdev)->irq_thread(irq, sdev); val |= ACP_DSP_TO_HOST_IRQ; |