On Tue, Oct 22, 2024 at 02:34:25PM -0700, Zaid Alali wrote: > @@ -692,7 +704,7 @@ int einj_validate_error_type(u64 type) > if (tval & (tval - 1)) > return -EINVAL; > if (!vendor) > - if (!(type & available_error_type)) > + if (!(type & (available_error_type))) Extra parentheses around available_error_type not needed. -Tony