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>
This commit is contained in:
Nicolas Iooss 2015-04-17 17:41:43 +08:00 committed by Greg Kroah-Hartman
parent 8e1a4c7f71
commit 27cbc73aac

View 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);