Hi Marc, On 12/31/20 3:09 PM, Marc Zyngier wrote: > Although not a problem right now, it flared up while working > on some other aspects of the code-base. Remove the useless > semicolon. > > Signed-off-by: Marc Zyngier <maz@xxxxxxxxxx> > --- > arch/arm64/kvm/sys_regs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c > index d46e7f706cb0..42ccc27fb684 100644 > --- a/arch/arm64/kvm/sys_regs.c > +++ b/arch/arm64/kvm/sys_regs.c > @@ -923,7 +923,7 @@ static bool access_pmuserenr(struct kvm_vcpu *vcpu, struct sys_reg_params *p, > > #define reg_to_encoding(x) \ > sys_reg((u32)(x)->Op0, (u32)(x)->Op1, \ > - (u32)(x)->CRn, (u32)(x)->CRm, (u32)(x)->Op2); > + (u32)(x)->CRn, (u32)(x)->CRm, (u32)(x)->Op2) Macro's shouldn't really end with a semicolon, otherwise code might break unexpectedly: Reviewed-by: Alexandru Elisei <alexandru.elisei@xxxxxxx> I skimmed over the code and the macro is used like a function. Do you think it's worth turning it into a function to gain type checking for the argument (which is expected to be sys_reg_desc) and for the return value? Thanks, Alex > > /* Silly macro to expand the DBG{BCR,BVR,WVR,WCR}n_EL1 registers in one go */ > #define DBG_BCR_BVR_WCR_WVR_EL1(n) \ _______________________________________________ kvmarm mailing list kvmarm@xxxxxxxxxxxxxxxxxxxxx https://lists.cs.columbia.edu/mailman/listinfo/kvmarm