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>
90 lines
2.4 KiB
C
90 lines
2.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Hardware monitoring driver for Infineon IR38064
|
|
*
|
|
* Copyright (c) 2017 Google Inc
|
|
*
|
|
* VOUT_MODE is not supported by the device. The driver fakes VOUT linear16
|
|
* mode with exponent value -8 as direct mode with m=256/b=0/R=0.
|
|
*
|
|
* The device supports VOUT_PEAK, IOUT_PEAK, and TEMPERATURE_PEAK, however
|
|
* this driver does not currently support them.
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/regulator/driver.h>
|
|
#include "pmbus.h"
|
|
|
|
#if IS_ENABLED(CONFIG_SENSORS_IR38064_REGULATOR)
|
|
static const struct regulator_desc ir38064_reg_desc[] = {
|
|
PMBUS_REGULATOR_ONE("vout"),
|
|
};
|
|
#endif /* CONFIG_SENSORS_IR38064_REGULATOR */
|
|
|
|
static struct pmbus_driver_info ir38064_info = {
|
|
.pages = 1,
|
|
.format[PSC_VOLTAGE_IN] = linear,
|
|
.format[PSC_VOLTAGE_OUT] = direct,
|
|
.format[PSC_CURRENT_OUT] = linear,
|
|
.format[PSC_POWER] = linear,
|
|
.format[PSC_TEMPERATURE] = linear,
|
|
.m[PSC_VOLTAGE_OUT] = 256,
|
|
.b[PSC_VOLTAGE_OUT] = 0,
|
|
.R[PSC_VOLTAGE_OUT] = 0,
|
|
.func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_STATUS_INPUT
|
|
| PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP
|
|
| PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT
|
|
| PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT
|
|
| PMBUS_HAVE_POUT,
|
|
#if IS_ENABLED(CONFIG_SENSORS_IR38064_REGULATOR)
|
|
.num_regulators = 1,
|
|
.reg_desc = ir38064_reg_desc,
|
|
#endif
|
|
};
|
|
|
|
static int ir38064_probe(struct i2c_client *client)
|
|
{
|
|
return pmbus_do_probe(client, &ir38064_info);
|
|
}
|
|
|
|
static const struct i2c_device_id ir38064_id[] = {
|
|
{"ir38060"},
|
|
{"ir38064"},
|
|
{"ir38164"},
|
|
{"ir38263"},
|
|
{}
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, ir38064_id);
|
|
|
|
static const struct of_device_id __maybe_unused ir38064_of_match[] = {
|
|
{ .compatible = "infineon,ir38060" },
|
|
{ .compatible = "infineon,ir38064" },
|
|
{ .compatible = "infineon,ir38164" },
|
|
{ .compatible = "infineon,ir38263" },
|
|
{}
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, ir38064_of_match);
|
|
|
|
/* This is the driver that will be inserted */
|
|
static struct i2c_driver ir38064_driver = {
|
|
.driver = {
|
|
.name = "ir38064",
|
|
.of_match_table = of_match_ptr(ir38064_of_match),
|
|
},
|
|
.probe = ir38064_probe,
|
|
.id_table = ir38064_id,
|
|
};
|
|
|
|
module_i2c_driver(ir38064_driver);
|
|
|
|
MODULE_AUTHOR("Maxim Sloyko <maxims@google.com>");
|
|
MODULE_DESCRIPTION("PMBus driver for Infineon IR38064 and compatible chips");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_IMPORT_NS("PMBUS");
|