From: Matt Turner Date: Fri, 1 Sep 2017 22:34:54 +0000 (-0700) Subject: i965: Add parentheses around usage of macro arguments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c961a5e79f40596e19e88ad780377a3fccc7a92;p=mesa.git i965: Add parentheses around usage of macro arguments Otherwise I cannot use this macro in test_eu_validate.cpp Reviewed-by: Iago Toral Quiroga --- diff --git a/src/intel/common/gen_device_info.h b/src/intel/common/gen_device_info.h index ede4915e287..59b345e949c 100644 --- a/src/intel/common/gen_device_info.h +++ b/src/intel/common/gen_device_info.h @@ -193,7 +193,7 @@ struct gen_device_info }; #define gen_device_info_is_9lp(devinfo) \ - (devinfo->is_broxton || devinfo->is_geminilake) + ((devinfo)->is_broxton || (devinfo)->is_geminilake) bool gen_get_device_info(int devid, struct gen_device_info *devinfo); const char *gen_get_device_name(int devid);