* [PATCH] ASoC: Intel: KMB: Propagate -EPROBE_DEFER from IRQ lookup
@ 2026-08-06 5:59 phucduc.bui
2026-08-11 13:45 ` Mark Brown
0 siblings, 1 reply; 2+ messages in thread
From: phucduc.bui @ 2026-08-06 5:59 UTC (permalink / raw)
To: Mark Brown, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
Cezary Rojewski, Peter Ujfalusi, Bard Liao, Kai Vehmanen,
Pierre-Louis Bossart, Kuninori Morimoto
Cc: linux-kernel, linux-sound, bui duc phuc
From: bui duc phuc <phucduc.bui@gmail.com>
Return -EPROBE_DEFER from platform_get_irq_optional() so the driver is
re-probed when the interrupt resource becomes available instead of
continuing probe without an IRQ.
Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
---
sound/soc/intel/keembay/kmb_platform.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/soc/intel/keembay/kmb_platform.c b/sound/soc/intel/keembay/kmb_platform.c
index 6659e8060ef3..48f132f01878 100644
--- a/sound/soc/intel/keembay/kmb_platform.c
+++ b/sound/soc/intel/keembay/kmb_platform.c
@@ -873,6 +873,8 @@ static int kmb_plat_dai_probe(struct platform_device *pdev)
if (kmb_i2s->use_pio) {
irq = platform_get_irq_optional(pdev, 0);
+ if (irq == -EPROBE_DEFER)
+ return irq;
if (irq > 0) {
ret = devm_request_irq(dev, irq, kmb_i2s_irq_handler, 0,
pdev->name, kmb_i2s);
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] ASoC: Intel: KMB: Propagate -EPROBE_DEFER from IRQ lookup
2026-08-06 5:59 [PATCH] ASoC: Intel: KMB: Propagate -EPROBE_DEFER from IRQ lookup phucduc.bui
@ 2026-08-11 13:45 ` Mark Brown
0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2026-08-11 13:45 UTC (permalink / raw)
To: Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Cezary Rojewski,
Peter Ujfalusi, Bard Liao, Kai Vehmanen, Pierre-Louis Bossart,
Kuninori Morimoto, phucduc.bui
Cc: linux-kernel, linux-sound
On Thu, 06 Aug 2026 12:59:37 +0700, phucduc.bui@gmail.com wrote:
> ASoC: Intel: KMB: Propagate -EPROBE_DEFER from IRQ lookup
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-7.3
Thanks!
[1/1] ASoC: Intel: KMB: Propagate -EPROBE_DEFER from IRQ lookup
https://git.kernel.org/broonie/sound/c/ce76c44c34ad
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-11 15:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-06 5:59 [PATCH] ASoC: Intel: KMB: Propagate -EPROBE_DEFER from IRQ lookup phucduc.bui
2026-08-11 13:45 ` Mark Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.