2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-02-15 23:48:01 +04:00
|
|
|
/*
|
|
|
|
* Industrial I/O in kernel access map interface.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Jonathan Cameron
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IIO_INKERN_H_
|
|
|
|
#define _IIO_INKERN_H_
|
|
|
|
|
2019-03-26 16:47:00 +03:00
|
|
|
struct iio_dev;
|
2012-02-15 23:48:01 +04:00
|
|
|
struct iio_map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* iio_map_array_register() - tell the core about inkernel consumers
|
|
|
|
* @indio_dev: provider device
|
|
|
|
* @map: array of mappings specifying association of channel with client
|
|
|
|
*/
|
|
|
|
int iio_map_array_register(struct iio_dev *indio_dev,
|
|
|
|
struct iio_map *map);
|
|
|
|
|
|
|
|
/**
|
2013-02-01 01:43:00 +04:00
|
|
|
* iio_map_array_unregister() - tell the core to remove consumer mappings for
|
|
|
|
* the given provider device
|
2012-02-15 23:48:01 +04:00
|
|
|
* @indio_dev: provider device
|
|
|
|
*/
|
2013-02-01 01:43:00 +04:00
|
|
|
int iio_map_array_unregister(struct iio_dev *indio_dev);
|
2012-02-15 23:48:01 +04:00
|
|
|
|
|
|
|
#endif
|