iio:consumer.h: Fix include guard

The symbol name for the #ifndef and the #define of the include guard do not
match and thus it becomes quite ineffective. Add the missing '_' to fix this.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
Lars-Peter Clausen 2012-08-17 16:57:00 +01:00 committed by Jonathan Cameron
parent d965a8bc0c
commit 88238fef16
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
* the Free Software Foundation.
*/
#ifndef _IIO_INKERN_CONSUMER_H_
#define _IIO_INKERN_CONSUMER_H
#define _IIO_INKERN_CONSUMER_H_
#include <linux/iio/types.h>
struct iio_dev;