Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
David S. Miller
9b8ac4f9 779d1436

+1 -1
+1 -1
include/net/gtp.h
··· 1 1 #ifndef _GTP_H_ 2 - #define _GTP_H 2 + #define _GTP_H_ 3 3 4 4 /* General GTP protocol related definitions. */ 5 5