acp-probes.c (a23e1966932464e1c5226cb9ac4ce1d5fc10ba22) acp-probes.c (cdd30ebb1b9f36159d66f088b61aee264e649d7a)
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) 2023 Advanced Micro Devices, Inc.
7//
8// Authors: V Sujith Kumar Reddy <Vsujithkumar.Reddy@amd.com>

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

130 .pointer = acp_probes_compr_pointer,
131};
132
133int acp_probes_register(struct snd_sof_dev *sdev)
134{
135 return sof_client_dev_register(sdev, "acp-probes", 0, &acp_probes_ops,
136 sizeof(acp_probes_ops));
137}
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) 2023 Advanced Micro Devices, Inc.
7//
8// Authors: V Sujith Kumar Reddy <Vsujithkumar.Reddy@amd.com>

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

130 .pointer = acp_probes_compr_pointer,
131};
132
133int acp_probes_register(struct snd_sof_dev *sdev)
134{
135 return sof_client_dev_register(sdev, "acp-probes", 0, &acp_probes_ops,
136 sizeof(acp_probes_ops));
137}
138EXPORT_SYMBOL_NS(acp_probes_register, SND_SOC_SOF_AMD_COMMON);
138EXPORT_SYMBOL_NS(acp_probes_register, "SND_SOC_SOF_AMD_COMMON");
139
140void acp_probes_unregister(struct snd_sof_dev *sdev)
141{
142 sof_client_dev_unregister(sdev, "acp-probes", 0);
143}
139
140void acp_probes_unregister(struct snd_sof_dev *sdev)
141{
142 sof_client_dev_unregister(sdev, "acp-probes", 0);
143}
144EXPORT_SYMBOL_NS(acp_probes_unregister, SND_SOC_SOF_AMD_COMMON);
144EXPORT_SYMBOL_NS(acp_probes_unregister, "SND_SOC_SOF_AMD_COMMON");
145
145
146MODULE_IMPORT_NS(SND_SOC_SOF_CLIENT);
146MODULE_IMPORT_NS("SND_SOC_SOF_CLIENT");
147
147