brintos

brintos / linux-shallow public Read only

0
0
Text · 424 B · 1fcc4b6 Raw
17 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * IIO accel driver for Freescale MMA7455L 3-axis 10-bit accelerometer4 * Copyright 2015 Joachim Eastwood <manabian@gmail.com>5 */6 7#ifndef __MMA7455_H8#define __MMA7455_H9 10extern const struct regmap_config mma7455_core_regmap;11 12int mma7455_core_probe(struct device *dev, struct regmap *regmap,13		       const char *name);14void mma7455_core_remove(struct device *dev);15 16#endif17