Re: [XEN PATCH 1/3] xen/arm: platform: address violation of MISRA C Rule 7.2

2025-02-14 Thread Stefano Stabellini
On Fri, 14 Feb 2025, Nicola Vetrini wrote: > Rule 7.2 states: "A u or U suffix shall be applied to all integer > constants that are represented in an unsigned type". > > Some PM_* constants are unsigned quantities, despite some > of them being representable in a signed type, so a 'U' suffix > shou

[XEN PATCH 1/3] xen/arm: platform: address violation of MISRA C Rule 7.2

2025-02-14 Thread Nicola Vetrini
Rule 7.2 states: "A u or U suffix shall be applied to all integer constants that are represented in an unsigned type". Some PM_* constants are unsigned quantities, despite some of them being representable in a signed type, so a 'U' suffix should be present. No functional change. Signed-off-by: N