iio: Add missing include guards to headers
authorLars-Peter Clausen <lars@metafoo.de>
Fri, 17 Aug 2012 15:57:00 +0000 (16:57 +0100)
committerJonathan Cameron <jic23@kernel.org>
Mon, 27 Aug 2012 17:57:56 +0000 (18:57 +0100)
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>
include/linux/iio/kfifo_buf.h
include/linux/iio/machine.h
include/linux/iio/trigger_consumer.h

index 014d5a13b32b50d5234fec97becd9c7e63e91b7b..25eeac762e849d4825bdb0dad85d5e8fb9fcbf4d 100644 (file)
@@ -1,3 +1,5 @@
+#ifndef __LINUX_IIO_KFIFO_BUF_H__
+#define __LINUX_IIO_KFIFO_BUF_H__
 
 #include <linux/kfifo.h>
 #include <linux/iio/iio.h>
@@ -6,3 +8,4 @@
 struct iio_buffer *iio_kfifo_allocate(struct iio_dev *indio_dev);
 void iio_kfifo_free(struct iio_buffer *r);
 
+#endif
index 400a453ff67be7eec3f3e2060fe80d9bc09b466f..809a3f08d5a5c6ff9141ba2c5f2af830c4d3fbbf 100644 (file)
@@ -8,6 +8,9 @@
  * 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.
@@ -22,3 +25,5 @@ struct iio_map {
        const char *consumer_dev_name;
        const char *consumer_channel;
 };
+
+#endif
index 60d64b3569458a7f33c96ea27caa4df908ca9d59..762a3d3ee5470cdd767f0ae45dffc4d796c59e74 100644 (file)
@@ -7,6 +7,9 @@
  * the Free Software Foundation.
  */
 
+#ifndef __LINUX_IIO_TRIGGER_CONSUMER_H__
+#define __LINUX_IIO_TRIGGER_CONSUMER_H__
+
 /**
  * struct iio_poll_func - poll function pair
  *
@@ -50,3 +53,5 @@ void iio_trigger_notify_done(struct iio_trigger *trig);
  */
 int iio_triggered_buffer_postenable(struct iio_dev *indio_dev);
 int iio_triggered_buffer_predisable(struct iio_dev *indio_dev);
+
+#endif