2024-03-26 11:04:19 -05:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2024-08-01 14:44:26 +05:30
|
|
|
// This file incorporates work covered by the following copyright notice:
|
2024-03-26 11:04:19 -05:00
|
|
|
// Copyright (c) 2024 Intel Corporation
|
2024-08-01 14:44:26 +05:30
|
|
|
// Copyright (c) 2024 Advanced Micro Devices, Inc.
|
2024-03-26 11:04:19 -05:00
|
|
|
|
|
|
|
/*
|
2024-08-01 14:44:26 +05:30
|
|
|
* soc_sdw_rt_dmic - Helpers to handle Realtek SDW DMIC from generic machine driver
|
2024-03-26 11:04:19 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#include <sound/soc-acpi.h>
|
2024-08-01 14:44:26 +05:30
|
|
|
#include <sound/soc_sdw_utils.h>
|
2024-03-26 11:04:19 -05:00
|
|
|
|
2024-08-01 14:44:19 +05:30
|
|
|
int asoc_sdw_rt_dmic_rtd_init(struct snd_soc_pcm_runtime *rtd, struct snd_soc_dai *dai)
|
2024-03-26 11:04:19 -05:00
|
|
|
{
|
|
|
|
struct snd_soc_card *card = rtd->card;
|
|
|
|
struct snd_soc_component *component;
|
|
|
|
char *mic_name;
|
|
|
|
|
2024-05-27 14:35:39 -05:00
|
|
|
component = dai->component;
|
2024-03-26 11:04:19 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rt715-sdca (aka rt714) is a special case that uses different name in card->components
|
|
|
|
* and component->name_prefix.
|
|
|
|
*/
|
|
|
|
if (!strcmp(component->name_prefix, "rt714"))
|
|
|
|
mic_name = devm_kasprintf(card->dev, GFP_KERNEL, "rt715-sdca");
|
|
|
|
else
|
|
|
|
mic_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s", component->name_prefix);
|
2025-04-15 14:41:34 -05:00
|
|
|
if (!mic_name)
|
|
|
|
return -ENOMEM;
|
2024-03-26 11:04:19 -05:00
|
|
|
|
|
|
|
card->components = devm_kasprintf(card->dev, GFP_KERNEL,
|
|
|
|
"%s mic:%s", card->components,
|
|
|
|
mic_name);
|
|
|
|
if (!card->components)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
dev_dbg(card->dev, "card->components: %s\n", card->components);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
module: Convert symbol namespace to string literal
Clean up the existing export namespace code along the same lines of
commit 33def8498fdd ("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
do
awk -i inplace '
/^#define EXPORT_SYMBOL_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/^#define MODULE_IMPORT_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/MODULE_IMPORT_NS/ {
$0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
}
/EXPORT_SYMBOL_NS/ {
if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
$0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
$0 !~ /^my/) {
getline line;
gsub(/[[:space:]]*\\$/, "");
gsub(/[[:space:]]/, "", line);
$0 = $0 " " line;
}
$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
"\\1(\\2, \"\\3\")", "g");
}
}
{ print }' $file;
done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2024-12-02 15:59:47 +01:00
|
|
|
EXPORT_SYMBOL_NS(asoc_sdw_rt_dmic_rtd_init, "SND_SOC_SDW_UTILS");
|