Skip to content

Commit 7ec345e

Browse files
vijendarmukundagregkh
authored andcommitted
ASoC: amd: ps: fix wrong ACP version string in pci_request_regions()
[ Upstream commit f7697ec ] The driver handles ACP6.3/7.0/7.1/7.2 platforms but the region was claimed with the stale name "AMD ACP6.2 audio" left over from the original ACP6.2 driver. Correct it to "AMD ACP6.3 audio". Fixes: 95e43a1 ("ASoC: amd: add Pink Sardine ACP PCI driver") Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com> Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org> Link: https://patch.msgid.link/20260707060130.2514138-3-Vijendar.Mukunda@amd.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent c803b3d commit 7ec345e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/soc/amd/ps/pci-ps.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ static int snd_acp63_probe(struct pci_dev *pci,
570570
return -ENODEV;
571571
}
572572

573-
ret = pci_request_regions(pci, "AMD ACP6.2 audio");
573+
ret = pci_request_regions(pci, "AMD ACP6.3 audio");
574574
if (ret < 0) {
575575
dev_err(&pci->dev, "pci_request_regions failed\n");
576576
goto disable_pci;

0 commit comments

Comments
 (0)