diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-07-24 14:24:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-07-25 20:55:43 -0400 |
commit | 9b8ac4f9dd60ac7375fb0e221dbf596db4c4e622 (patch) | |
tree | e8d7eeb5d7339b1627e6da2485cee930a3646cce | |
parent | 779d1436fa9c5c0cbfb05cb949e362982588beaf (diff) |
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 <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/gtp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/gtp.h b/include/net/gtp.h index 894a37b87d63..6398891b99ba 100644 --- a/include/net/gtp.h +++ b/include/net/gtp.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _GTP_H_ | 1 | #ifndef _GTP_H_ |
2 | #define _GTP_H | 2 | #define _GTP_H_ |
3 | 3 | ||
4 | /* General GTP protocol related definitions. */ | 4 | /* General GTP protocol related definitions. */ |
5 | 5 | ||