From: Stephen Hemminger Date: Fri, 24 May 2019 22:51:06 +0000 (-0700) Subject: uapi: minor upstream btf.h header change X-Git-Tag: v5.2.0~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bb38f6c5e46d33bc983541a814178690646ae46;p=thirdparty%2Fiproute2.git uapi: minor upstream btf.h header change Signed-off-by: Stephen Hemminger --- diff --git a/include/uapi/linux/btf.h b/include/uapi/linux/btf.h index 73eba2e5f..8ef8001de 100644 --- a/include/uapi/linux/btf.h +++ b/include/uapi/linux/btf.h @@ -83,7 +83,7 @@ struct btf_type { * is the 32 bits arrangement: */ #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) -#define BTF_INT_OFFSET(VAL) (((VAL & 0x00ff0000)) >> 16) +#define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) /* Attributes stored in the BTF_INT_ENCODING */