Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / iio / pressure / mpl115.h
blob57d55eb8e661789f675b2993893774e7995af34a
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Freescale MPL115A pressure/temperature sensor
5 * Copyright (c) 2014 Peter Meerwald <pmeerw@pmeerw.net>
6 * Copyright (c) 2016 Akinobu Mita <akinobu.mita@gmail.com>
7 */
9 #ifndef _MPL115_H_
10 #define _MPL115_H_
12 struct mpl115_ops {
13 int (*init)(struct device *);
14 int (*read)(struct device *, u8);
15 int (*write)(struct device *, u8, u8);
18 int mpl115_probe(struct device *dev, const char *name,
19 const struct mpl115_ops *ops);
21 #endif