2018-09-04 17:11:31 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* ADXL372 3-Axis Digital Accelerometer SPI driver
|
|
|
|
*
|
|
|
|
* Copyright 2018 Analog Devices Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
2024-02-18 17:33:20 +00:00
|
|
|
#include <linux/mod_devicetable.h>
|
2018-09-04 17:11:31 +03:00
|
|
|
#include <linux/regmap.h>
|
|
|
|
#include <linux/spi/spi.h>
|
|
|
|
|
|
|
|
#include "adxl372.h"
|
|
|
|
|
|
|
|
static const struct regmap_config adxl372_spi_regmap_config = {
|
|
|
|
.reg_bits = 7,
|
|
|
|
.pad_bits = 1,
|
|
|
|
.val_bits = 8,
|
|
|
|
.read_flag_mask = BIT(0),
|
|
|
|
.readable_noinc_reg = adxl372_readable_noinc_reg,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int adxl372_spi_probe(struct spi_device *spi)
|
|
|
|
{
|
|
|
|
const struct spi_device_id *id = spi_get_device_id(spi);
|
|
|
|
struct regmap *regmap;
|
|
|
|
|
|
|
|
regmap = devm_regmap_init_spi(spi, &adxl372_spi_regmap_config);
|
|
|
|
if (IS_ERR(regmap))
|
|
|
|
return PTR_ERR(regmap);
|
|
|
|
|
|
|
|
return adxl372_probe(&spi->dev, regmap, spi->irq, id->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct spi_device_id adxl372_spi_id[] = {
|
|
|
|
{ "adxl372", 0 },
|
2025-04-11 15:49:34 -05:00
|
|
|
{ }
|
2018-09-04 17:11:31 +03:00
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(spi, adxl372_spi_id);
|
|
|
|
|
2019-04-23 23:41:37 +02:00
|
|
|
static const struct of_device_id adxl372_of_match[] = {
|
2020-07-22 10:25:46 +03:00
|
|
|
{ .compatible = "adi,adxl372" },
|
|
|
|
{ }
|
2019-04-23 23:41:37 +02:00
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, adxl372_of_match);
|
|
|
|
|
2018-09-04 17:11:31 +03:00
|
|
|
static struct spi_driver adxl372_spi_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "adxl372_spi",
|
2019-04-23 23:41:37 +02:00
|
|
|
.of_match_table = adxl372_of_match,
|
2018-09-04 17:11:31 +03:00
|
|
|
},
|
|
|
|
.probe = adxl372_spi_probe,
|
|
|
|
.id_table = adxl372_spi_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_spi_driver(adxl372_spi_driver);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Stefan Popa <stefan.popa@analog.com>");
|
|
|
|
MODULE_DESCRIPTION("Analog Devices ADXL372 3-axis accelerometer SPI driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
module: Convert symbol namespace to string literal
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>
2024-12-02 15:59:47 +01:00
|
|
|
MODULE_IMPORT_NS("IIO_ADXL372");
|