On 12.07.2021 22:32, Daniel P. Smith wrote: > --- a/xen/include/xsm/xsm.h > +++ b/xen/include/xsm/xsm.h > @@ -30,53 +30,53 @@ static inline void xsm_security_domaininfo (struct domain > *d, > alternative_vcall(xsm_ops.security_domaininfo, d, info); > } > > -static inline int xsm_domain_create (xsm_default_t def, struct domain *d, > u32 ssidref) > +static inline int xsm_domain_create (struct domain *d, u32 ssidref)
When you have to touch such lines anyway, may I suggest that you also take the opportunity and drop the stray blanks immediately ahead of the opening parenthesis, to bring this file better in line with ./CODING_STYLE? And as just said for a later patch, converting u<N> to uint<N>_t at this occasion would also be nice, for the same reason. Jan