Message ID | 20210721183603.747-2-mario.limonciello@amd.com |
---|---|
State | Superseded |
Headers | show |
Series | ASoC: amd: renoir: Run hibernation callbacks | expand |
On Wed, Jul 21, 2021 at 01:36:03PM -0500, Mario Limonciello wrote: > The registers need to be re-initialized after hibernation or > microphone may be non-functional. You've sent this in reply to version 2 of an apparently unrelated patch, please don't send patches in reply to existing threads especially not unrelated ones - it really confuses the tooling.
On Wed, 21 Jul 2021 13:36:03 -0500, Mario Limonciello wrote: > The registers need to be re-initialized after hibernation or > microphone may be non-functional. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: amd: renoir: Run hibernation callbacks commit: d00f541a49406afc2c091aac121e29b3b61480a2 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/renoir/rn-pci-acp3x.c b/sound/soc/amd/renoir/rn-pci-acp3x.c index 19438da5dfa5..7b8040e812a1 100644 --- a/sound/soc/amd/renoir/rn-pci-acp3x.c +++ b/sound/soc/amd/renoir/rn-pci-acp3x.c @@ -382,6 +382,8 @@ static const struct dev_pm_ops rn_acp_pm = { .runtime_resume = snd_rn_acp_resume, .suspend = snd_rn_acp_suspend, .resume = snd_rn_acp_resume, + .restore = snd_rn_acp_resume, + .poweroff = snd_rn_acp_suspend, }; static void snd_rn_acp_remove(struct pci_dev *pci)
The registers need to be re-initialized after hibernation or microphone may be non-functional. BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=213793 Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> --- sound/soc/amd/renoir/rn-pci-acp3x.c | 2 ++ 1 file changed, 2 insertions(+)