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