blob: 6dd49b13e4fd076c40c388c03fb4c1bee1c4e3bf [file] [log] [blame]
Puranjay Mohan12ed2782021-08-11 13:00:27 +05301/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * ADXL355 3-Axis Digital Accelerometer
4 *
5 * Copyright (c) 2021 Puranjay Mohan <puranjay12@gmail.com>
6 */
7
8#ifndef _ADXL355_H_
9#define _ADXL355_H_
10
11#include <linux/regmap.h>
12
13struct device;
14
15extern const struct regmap_access_table adxl355_readable_regs_tbl;
16extern const struct regmap_access_table adxl355_writeable_regs_tbl;
17
18int adxl355_core_probe(struct device *dev, struct regmap *regmap,
19 const char *name);
20
21#endif /* _ADXL355_H_ */