module: Convert symbol namespace to string literal
[linux.git] / drivers / iio / accel / adxl367.h
blob4a42622149b1bf751dab547546f5e6ef7a26f87e
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright (C) 2021 Analog Devices, Inc.
4 * Author: Cosmin Tanislav <cosmin.tanislav@analog.com>
5 */
7 #ifndef _ADXL367_H_
8 #define _ADXL367_H_
10 #include <linux/types.h>
12 struct device;
13 struct regmap;
15 struct adxl367_ops {
16 int (*read_fifo)(void *context, __be16 *fifo_buf,
17 unsigned int fifo_entries);
20 int adxl367_probe(struct device *dev, const struct adxl367_ops *ops,
21 void *context, struct regmap *regmap, int irq);
23 #endif /* _ADXL367_H_ */