linux/drivers/iio/pressure/mpl115.h

/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Freescale MPL115A pressure/temperature sensor
 *
 * Copyright (c) 2014 Peter Meerwald <[email protected]>
 * Copyright (c) 2016 Akinobu Mita <[email protected]>
 */

#include <linux/pm_runtime.h>

#ifndef _MPL115_H_
#define _MPL115_H_

struct mpl115_ops {};

int mpl115_probe(struct device *dev, const char *name,
			const struct mpl115_ops *ops);

/*PM ops */
extern const struct dev_pm_ops mpl115_dev_pm_ops;

#endif