mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Clean up the existing export namespace code along the same lines of
commit 33def8498f
("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>
72 lines
1.7 KiB
C
72 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
//
|
|
// CS530x CODEC driver
|
|
//
|
|
// Copyright (C) 2024 Cirrus Logic, Inc. and
|
|
// Cirrus Logic International Semiconductor Ltd.
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/module.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#include "cs530x.h"
|
|
|
|
static const struct of_device_id cs530x_of_match[] = {
|
|
{
|
|
.compatible = "cirrus,cs5302",
|
|
.data = (void *)CS5302,
|
|
}, {
|
|
.compatible = "cirrus,cs5304",
|
|
.data = (void *)CS5304,
|
|
}, {
|
|
.compatible = "cirrus,cs5308",
|
|
.data = (void *)CS5308,
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(of, cs530x_of_match);
|
|
|
|
static const struct i2c_device_id cs530x_i2c_id[] = {
|
|
{ "cs5302", CS5302 },
|
|
{ "cs5304", CS5304 },
|
|
{ "cs5308", CS5308 },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(i2c, cs530x_i2c_id);
|
|
|
|
static int cs530x_i2c_probe(struct i2c_client *client)
|
|
{
|
|
struct cs530x_priv *cs530x;
|
|
|
|
cs530x = devm_kzalloc(&client->dev, sizeof(*cs530x), GFP_KERNEL);
|
|
if (!cs530x)
|
|
return -ENOMEM;
|
|
|
|
i2c_set_clientdata(client, cs530x);
|
|
|
|
cs530x->regmap = devm_regmap_init_i2c(client, &cs530x_regmap);
|
|
if (IS_ERR(cs530x->regmap))
|
|
return dev_err_probe(&client->dev, PTR_ERR(cs530x->regmap),
|
|
"Failed to allocate register map\n");
|
|
|
|
cs530x->devtype = (uintptr_t)i2c_get_match_data(client);
|
|
cs530x->dev = &client->dev;
|
|
|
|
return cs530x_probe(cs530x);
|
|
}
|
|
|
|
static struct i2c_driver cs530x_i2c_driver = {
|
|
.driver = {
|
|
.name = "cs530x",
|
|
.of_match_table = cs530x_of_match,
|
|
},
|
|
.probe = cs530x_i2c_probe,
|
|
.id_table = cs530x_i2c_id,
|
|
};
|
|
module_i2c_driver(cs530x_i2c_driver);
|
|
|
|
MODULE_DESCRIPTION("I2C CS530X driver");
|
|
MODULE_IMPORT_NS("SND_SOC_CS530X");
|
|
MODULE_AUTHOR("Paul Handrigan, Cirrus Logic Inc, <paulha@opensource.cirrus.com>");
|
|
MODULE_LICENSE("GPL");
|