Commit f18818eb authored by Venkata Prasad Potturu's avatar Venkata Prasad Potturu Committed by Mark Brown

ASoC: amd: vangogh: Add condition check for acp config flag

Add condition check for acp config flag to load legacy driver only.
Signed-off-by: default avatarVenkata Prasad Potturu <venkataprasad.potturu@amd.com>
Link: https://lore.kernel.org/r/20231206110620.1695591-2-venkataprasad.potturu@amd.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent c3ab23a1
......@@ -2,7 +2,7 @@
//
// AMD Vangogh ACP PCI Driver
//
// Copyright (C) 2021 Advanced Micro Devices, Inc. All rights reserved.
// Copyright (C) 2021, 2023 Advanced Micro Devices, Inc. All rights reserved.
#include <linux/pci.h>
#include <linux/module.h>
......@@ -13,6 +13,7 @@
#include <linux/pm_runtime.h>
#include "acp5x.h"
#include "../mach-config.h"
struct acp5x_dev_data {
void __iomem *acp5x_base;
......@@ -131,7 +132,7 @@ static int snd_acp5x_probe(struct pci_dev *pci,
/* Return if acp config flag is defined */
flag = snd_amd_acp_find_config(pci);
if (flag)
if (flag != FLAG_AMD_LEGACY)
return -ENODEV;
irqflags = IRQF_SHARED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment