mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-19 13:50:48 +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>
26 lines
698 B
C
26 lines
698 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#define LTC2497_ENABLE 0xA0
|
|
#define LTC2497_CONFIG_DEFAULT LTC2497_ENABLE
|
|
#define LTC2497_CONVERSION_TIME_MS 150ULL
|
|
|
|
struct ltc2497_chip_info {
|
|
u32 resolution;
|
|
const char *name;
|
|
};
|
|
|
|
struct ltc2497core_driverdata {
|
|
struct regulator *ref;
|
|
ktime_t time_prev;
|
|
/* lock to protect against multiple access to the device */
|
|
struct mutex lock;
|
|
const struct ltc2497_chip_info *chip_info;
|
|
u8 addr_prev;
|
|
int (*result_and_measure)(struct ltc2497core_driverdata *ddata,
|
|
u8 address, int *val);
|
|
};
|
|
|
|
int ltc2497core_probe(struct device *dev, struct iio_dev *indio_dev);
|
|
void ltc2497core_remove(struct iio_dev *indio_dev);
|
|
|
|
MODULE_IMPORT_NS("LTC2497");
|