Message ID | 1603476441-3506-1-git-send-email-Vijendar.Mukunda@amd.com (mailing list archive) |
---|---|
State | Accepted |
Commit | efb38304c550cd7abf1a855074a73dc4a8874aa0 |
Headers | show |
Series | ASoC: amd: support other audio modes for raven | expand |
On Fri, 23 Oct 2020 23:37:17 +0530, Vijendar Mukunda wrote: > ACP supports different audio configurations other than I2S. > This patch will fix acp driver probe failure for other audio > configurations. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: amd: support other audio modes for raven commit: efb38304c550cd7abf1a855074a73dc4a8874aa0 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
diff --git a/sound/soc/amd/raven/pci-acp3x.c b/sound/soc/amd/raven/pci-acp3x.c index 31b797c..cd5b097 100644 --- a/sound/soc/amd/raven/pci-acp3x.c +++ b/sound/soc/amd/raven/pci-acp3x.c @@ -231,9 +231,7 @@ static int snd_acp3x_probe(struct pci_dev *pci, } break; default: - dev_err(&pci->dev, "Invalid ACP audio mode : %d\n", val); - ret = -ENODEV; - goto disable_msi; + dev_info(&pci->dev, "ACP audio mode : %d\n", val); } pm_runtime_set_autosuspend_delay(&pci->dev, 2000); pm_runtime_use_autosuspend(&pci->dev);