From: Colin Ian King Date: Sun, 24 Jul 2016 18:24:09 +0000 (+0100) Subject: gtp: #define #define _GTP_H_ and not #define _GTP_H X-Git-Tag: v4.14-rc1~2816^2~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b8ac4f9dd60ac7375fb0e221dbf596db4c4e622;p=platform%2Fkernel%2Flinux-rpi.git gtp: #define #define _GTP_H_ and not #define _GTP_H Fix clang build warning: ./include/net/gtp.h:1:9: warning: '_GTP_H_' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] fix by defining _GTP_H_ and not _GTP_H Signed-off-by: Colin Ian King Signed-off-by: David S. Miller --- diff --git a/include/net/gtp.h b/include/net/gtp.h index 894a37b..6398891 100644 --- a/include/net/gtp.h +++ b/include/net/gtp.h @@ -1,5 +1,5 @@ #ifndef _GTP_H_ -#define _GTP_H +#define _GTP_H_ /* General GTP protocol related definitions. */