From: Nicolas Iooss Date: Fri, 17 Apr 2015 09:41:43 +0000 (+0800) Subject: Staging: fbtft: fix header guard typo X-Git-Tag: v5.15~15549^2~992 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27cbc73aac0d82490e2a6fd6838d21e8c08b0166;p=platform%2Fkernel%2Flinux-starfive.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/fbtft/internal.h b/drivers/staging/fbtft/internal.h index f69db82..eea0ec5 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);