mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
c984b9cbbd
mpl115 driver currently supports i2c interface (MPL115A2). There is also SPI version (MPL115A1). The difference between them is only physical transport so we can easily support both while sharing most of the code. Split the driver into a core support module and one module each for I2C and SPI support. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Cc: Jonathan Cameron <jic23@kernel.org> Cc: Hartmut Knaack <knaack.h@gmx.de> Cc: Lars-Peter Clausen <lars@metafoo.de> Cc: Peter Meerwald <pmeerw@pmeerw.net> Cc: linux-iio@vger.kernel.org Signed-off-by: Jonathan Cameron <jic23@kernel.org>
24 lines
630 B
C
24 lines
630 B
C
/*
|
|
* Freescale MPL115A pressure/temperature sensor
|
|
*
|
|
* Copyright (c) 2014 Peter Meerwald <pmeerw@pmeerw.net>
|
|
* Copyright (c) 2016 Akinobu Mita <akinobu.mita@gmail.com>
|
|
*
|
|
* This file is subject to the terms and conditions of version 2 of
|
|
* the GNU General Public License. See the file COPYING in the main
|
|
* directory of this archive for more details.
|
|
*/
|
|
|
|
#ifndef _MPL115_H_
|
|
#define _MPL115_H_
|
|
|
|
struct mpl115_ops {
|
|
int (*init)(struct device *);
|
|
int (*read)(struct device *, u8);
|
|
int (*write)(struct device *, u8, u8);
|
|
};
|
|
|
|
int mpl115_probe(struct device *dev, const char *name,
|
|
const struct mpl115_ops *ops);
|
|
|
|
#endif
|