repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
18 lines
388 B
C
18 lines
388 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* ADXL372 3-Axis Digital Accelerometer
|
|
*
|
|
* Copyright 2018 Analog Devices Inc.
|
|
*/
|
|
|
|
#ifndef _ADXL372_H_
|
|
#define _ADXL372_H_
|
|
|
|
#define ADXL372_REVID 0x03
|
|
|
|
int adxl372_probe(struct device *dev, struct regmap *regmap,
|
|
int irq, const char *name);
|
|
bool adxl372_readable_noinc_reg(struct device *dev, unsigned int reg);
|
|
|
|
#endif /* _ADXL372_H_ */
|