diff options
author | Nicolas Iooss <nicolas.iooss_linux@m4x.org> | 2015-04-17 12:41:43 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-04-30 17:51:21 +0300 |
commit | 27cbc73aac0d82490e2a6fd6838d21e8c08b0166 (patch) | |
tree | 6847f34cd72f894cd8b2b0618b5b94c9dacd05f0 /drivers/staging/fbtft | |
parent | 8e1a4c7f718e5de5019cb5ce6ada657ce1b5ea89 (diff) | |
download | linux-27cbc73aac0d82490e2a6fd6838d21e8c08b0166.tar.xz |
Staging: fbtft: fix header guard typo
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>
Diffstat (limited to 'drivers/staging/fbtft')
-rw-r--r-- | drivers/staging/fbtft/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fbtft/internal.h b/drivers/staging/fbtft/internal.h index f69db8289151..eea0ec5ff4d3 100644 --- a/drivers/staging/fbtft/internal.h +++ b/drivers/staging/fbtft/internal.h @@ -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); |