18 lines · c
1/* SPDX-License-Identifier: GPL-2.0+ */2/*3 * ADXL372 3-Axis Digital Accelerometer4 *5 * Copyright 2018 Analog Devices Inc.6 */7 8#ifndef _ADXL372_H_9#define _ADXL372_H_10 11#define ADXL372_REVID 0x0312 13int adxl372_probe(struct device *dev, struct regmap *regmap,14 int irq, const char *name);15bool adxl372_readable_noinc_reg(struct device *dev, unsigned int reg);16 17#endif /* _ADXL372_H_ */18