mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 16:56:45 +07:00
08d6005c03
Add include guards to the IIO headers where they are missing. This avoids compile errors due to redefined types if a file is included more than once. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
30 lines
902 B
C
30 lines
902 B
C
/*
|
|
* Industrial I/O in kernel access map definitions for board files.
|
|
*
|
|
* Copyright (c) 2011 Jonathan Cameron
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __LINUX_IIO_MACHINE_H__
|
|
#define __LINUX_IIO_MACHINE_H__
|
|
|
|
/**
|
|
* struct iio_map - description of link between consumer and device channels
|
|
* @adc_channel_label: Label used to identify the channel on the provider.
|
|
* This is matched against the datasheet_name element
|
|
* of struct iio_chan_spec.
|
|
* @consumer_dev_name: Name to uniquely identify the consumer device.
|
|
* @consumer_channel: Unique name used to identify the channel on the
|
|
* consumer side.
|
|
*/
|
|
struct iio_map {
|
|
const char *adc_channel_label;
|
|
const char *consumer_dev_name;
|
|
const char *consumer_channel;
|
|
};
|
|
|
|
#endif
|