forked from Minki/linux
12ed27863e
ADXL355 is a 3-axis MEMS Accelerometer. It offers low noise density, low 0g offset drift, low power with selectable measurement ranges. It also features programmable high-pass and low-pass filters. Datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/adxl354_adxl355.pdf Reviewed-by: Alexandru Ardelean <ardeleanalex@gmail.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Puranjay Mohan <puranjay12@gmail.com> Link: https://lore.kernel.org/r/20210811073027.124619-3-puranjay12@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
22 lines
495 B
C
22 lines
495 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* ADXL355 3-Axis Digital Accelerometer
|
|
*
|
|
* Copyright (c) 2021 Puranjay Mohan <puranjay12@gmail.com>
|
|
*/
|
|
|
|
#ifndef _ADXL355_H_
|
|
#define _ADXL355_H_
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
struct device;
|
|
|
|
extern const struct regmap_access_table adxl355_readable_regs_tbl;
|
|
extern const struct regmap_access_table adxl355_writeable_regs_tbl;
|
|
|
|
int adxl355_core_probe(struct device *dev, struct regmap *regmap,
|
|
const char *name);
|
|
|
|
#endif /* _ADXL355_H_ */
|