Staging: fbtft: fix header guard typo
authorNicolas Iooss <nicolas.iooss_linux@m4x.org>
Fri, 17 Apr 2015 09:41:43 +0000 (17:41 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Apr 2015 14:51:21 +0000 (16:51 +0200)
drivers/staging/fbtft/internal.h header guard tests for
__LINUX_FBTFT__INTERNAL_H but then defines __LINUX_FBTFT_INTERNAL_H
(only 1 underscore) and uses the same name for the #endif comment.
Use the same name everywhere.

Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fbtft/internal.h

index f69db82891516a95b00c4d2db806f298aa0315ce..eea0ec5ff4d39bf277288edc02a216c8af3f749b 100644 (file)
@@ -13,7 +13,7 @@
  *
  */
 
-#ifndef __LINUX_FBTFT__INTERNAL_H
+#ifndef __LINUX_FBTFT_INTERNAL_H
 #define __LINUX_FBTFT_INTERNAL_H
 
 void fbtft_sysfs_init(struct fbtft_par *par);
This page took 0.02639 seconds and 5 git commands to generate.