acp-config.c (ef51cddf014b3e4909e9656025d1f7c2b4cc4117) acp-config.c (197b1f7f0df183db332b6b8851a29c8bc901571d)
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
6// Copyright(c) 2021 Advanced Micro Devices, Inc.
7//
8// Authors: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>

--- 33 unchanged lines hidden (view full) ---

42 {
43 .matches = {
44 DMI_MATCH(DMI_SYS_VENDOR, "Google"),
45 },
46 },
47 {}
48 },
49 },
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
6// Copyright(c) 2021 Advanced Micro Devices, Inc.
7//
8// Authors: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>

--- 33 unchanged lines hidden (view full) ---

42 {
43 .matches = {
44 DMI_MATCH(DMI_SYS_VENDOR, "Google"),
45 },
46 },
47 {}
48 },
49 },
50 {
51 .flags = FLAG_AMD_SOF,
52 .device = ACP_PCI_DEV_ID,
53 .dmi_table = (const struct dmi_system_id []) {
54 {
55 .matches = {
56 DMI_MATCH(DMI_SYS_VENDOR, "Valve"),
57 DMI_MATCH(DMI_PRODUCT_NAME, "Galileo"),
58 DMI_MATCH(DMI_PRODUCT_FAMILY, "Sephiroth"),
59 },
60 },
61 {}
62 },
63 },
50};
51
52int snd_amd_acp_find_config(struct pci_dev *pci)
53{
54 const struct config_entry *table = config_table;
55 u16 device = pci->device;
56 int i;
57

--- 125 unchanged lines hidden ---
64};
65
66int snd_amd_acp_find_config(struct pci_dev *pci)
67{
68 const struct config_entry *table = config_table;
69 u16 device = pci->device;
70 int i;
71

--- 125 unchanged lines hidden ---