License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / drivers / iio / accel / bmc150-accel.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
55637c38
MP
2#ifndef _BMC150_ACCEL_H_
3#define _BMC150_ACCEL_H_
4
5struct regmap;
6
7enum {
8 bmc150,
9 bmi055,
10 bma255,
11 bma250e,
12 bma222e,
13 bma280,
14};
15
16int bmc150_accel_core_probe(struct device *dev, struct regmap *regmap, int irq,
17 const char *name, bool block_supported);
18int bmc150_accel_core_remove(struct device *dev);
19extern const struct dev_pm_ops bmc150_accel_pm_ops;
486294f1 20extern const struct regmap_config bmc150_regmap_conf;
55637c38
MP
21
22#endif /* _BMC150_ACCEL_H_ */