blob: 2b1152c53d4f5ffb92262fd93e37954650d16501 [file] [log] [blame]
Joachim Eastwooda84ef0d2015-10-31 13:49:16 +01001/*
2 * IIO accel driver for Freescale MMA7455L 3-axis 10-bit accelerometer
3 * Copyright 2015 Joachim Eastwood <manabian@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#ifndef __MMA7455_H
11#define __MMA7455_H
12
13extern const struct regmap_config mma7455_core_regmap;
14
15int mma7455_core_probe(struct device *dev, struct regmap *regmap,
16 const char *name);
17int mma7455_core_remove(struct device *dev);
18
19#endif