mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 22:05:08 +00:00
cdd30ebb1b
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>
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* soc-acpi-intel-sdca-quirks.c - tables and support for SDCA quirks
|
|
*
|
|
* Copyright (c) 2024, Intel Corporation.
|
|
*
|
|
*/
|
|
|
|
#include <linux/soundwire/sdw_intel.h>
|
|
#include <sound/sdca.h>
|
|
#include <sound/soc-acpi.h>
|
|
#include "soc-acpi-intel-sdca-quirks.h"
|
|
|
|
/*
|
|
* Pretend machine quirk. The argument type is not the traditional
|
|
* 'struct snd_soc_acpi_mach' pointer but instead the sdw_intel_ctx
|
|
* which contains the peripheral information required for the
|
|
* SoundWire/SDCA filter on the SMART_MIC setup and interface
|
|
* revision. When the return value is false, the entry in the
|
|
* 'snd_soc_acpi_mach' table needs to be skipped.
|
|
*/
|
|
bool snd_soc_acpi_intel_sdca_is_device_rt712_vb(void *arg)
|
|
{
|
|
struct sdw_intel_ctx *ctx = arg;
|
|
int i;
|
|
|
|
if (!ctx)
|
|
return false;
|
|
|
|
for (i = 0; i < ctx->peripherals->num_peripherals; i++) {
|
|
if (sdca_device_quirk_match(ctx->peripherals->array[i],
|
|
SDCA_QUIRKS_RT712_VB))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
EXPORT_SYMBOL_NS(snd_soc_acpi_intel_sdca_is_device_rt712_vb, "SND_SOC_ACPI_INTEL_SDCA_QUIRKS");
|
|
|
|
MODULE_DESCRIPTION("ASoC ACPI Intel SDCA quirks");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_IMPORT_NS("SND_SOC_SDCA");
|