mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 09:16:33 +00:00
cdd30ebb1b
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>
79 lines
1.8 KiB
C
79 lines
1.8 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
//
|
|
// cs35l45-spi.c -- CS35L45 SPI driver
|
|
//
|
|
// Copyright 2019-2022 Cirrus Logic, Inc.
|
|
//
|
|
// Author: James Schulman <james.schulman@cirrus.com>
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/module.h>
|
|
#include <linux/regmap.h>
|
|
#include <linux/spi/spi.h>
|
|
|
|
#include "cs35l45.h"
|
|
|
|
static int cs35l45_spi_probe(struct spi_device *spi)
|
|
{
|
|
struct cs35l45_private *cs35l45;
|
|
struct device *dev = &spi->dev;
|
|
int ret;
|
|
|
|
cs35l45 = devm_kzalloc(dev, sizeof(struct cs35l45_private), GFP_KERNEL);
|
|
if (cs35l45 == NULL)
|
|
return -ENOMEM;
|
|
|
|
spi->max_speed_hz = CS35L45_SPI_MAX_FREQ;
|
|
spi_setup(spi);
|
|
|
|
spi_set_drvdata(spi, cs35l45);
|
|
cs35l45->regmap = devm_regmap_init_spi(spi, &cs35l45_spi_regmap);
|
|
if (IS_ERR(cs35l45->regmap)) {
|
|
ret = PTR_ERR(cs35l45->regmap);
|
|
dev_err(dev, "Failed to allocate register map: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
cs35l45->dev = dev;
|
|
cs35l45->irq = spi->irq;
|
|
cs35l45->bus_type = CONTROL_BUS_SPI;
|
|
|
|
return cs35l45_probe(cs35l45);
|
|
}
|
|
|
|
static void cs35l45_spi_remove(struct spi_device *spi)
|
|
{
|
|
struct cs35l45_private *cs35l45 = spi_get_drvdata(spi);
|
|
|
|
cs35l45_remove(cs35l45);
|
|
}
|
|
|
|
static const struct of_device_id cs35l45_of_match[] = {
|
|
{ .compatible = "cirrus,cs35l45" },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, cs35l45_of_match);
|
|
|
|
static const struct spi_device_id cs35l45_id_spi[] = {
|
|
{ "cs35l45", 0 },
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(spi, cs35l45_id_spi);
|
|
|
|
static struct spi_driver cs35l45_spi_driver = {
|
|
.driver = {
|
|
.name = "cs35l45",
|
|
.of_match_table = cs35l45_of_match,
|
|
.pm = pm_ptr(&cs35l45_pm_ops),
|
|
},
|
|
.id_table = cs35l45_id_spi,
|
|
.probe = cs35l45_spi_probe,
|
|
.remove = cs35l45_spi_remove,
|
|
};
|
|
module_spi_driver(cs35l45_spi_driver);
|
|
|
|
MODULE_DESCRIPTION("SPI CS35L45 driver");
|
|
MODULE_AUTHOR("James Schulman, Cirrus Logic Inc, <james.schulman@cirrus.com>");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_IMPORT_NS("SND_SOC_CS35L45");
|