diff options
| author | Takashi Iwai <[email protected]> | 2022-11-23 17:14:10 +0100 |
|---|---|---|
| committer | Takashi Iwai <[email protected]> | 2022-11-23 17:14:10 +0100 |
| commit | ecae4c8954a1faba6fcc4fe6ec1680b3c4e393d1 (patch) | |
| tree | 58c69aca717eb789d235f40bfb89f1b50c0f78c6 /sound/soc/stm/stm32_i2s.c | |
| parent | 05530ef7cf7c7d700f6753f058999b1b5099a026 (diff) | |
| parent | db8f91d424fe0ea6db337aca8bc05908bbce1498 (diff) | |
Merge tag 'asoc-fix-v6.1-rc6' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.1
A clutch of small fixes that have come in in the past week, people seem
to have been unusually active for this late in the release cycle. The
most critical one here is the fix to renumber the SOF DAI types in order
to restore ABI compatibility which was broken by the addition of AMD
support.
Diffstat (limited to 'sound/soc/stm/stm32_i2s.c')
| -rw-r--r-- | sound/soc/stm/stm32_i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/stm/stm32_i2s.c b/sound/soc/stm/stm32_i2s.c index ce7f6942308f..f3dd9f8e621c 100644 --- a/sound/soc/stm/stm32_i2s.c +++ b/sound/soc/stm/stm32_i2s.c @@ -1077,7 +1077,7 @@ static int stm32_i2s_parse_dt(struct platform_device *pdev, if (irq < 0) return irq; - ret = devm_request_irq(&pdev->dev, irq, stm32_i2s_isr, IRQF_ONESHOT, + ret = devm_request_irq(&pdev->dev, irq, stm32_i2s_isr, 0, dev_name(&pdev->dev), i2s); if (ret) { dev_err(&pdev->dev, "irq request returned %d\n", ret); |