Re: [XEN PATCH 1/3] xen/irq: add missing parameter names

2023-07-24 Thread Stefano Stabellini
On Mon, 24 Jul 2023, Federico Serafini wrote: > -extern int pirq_guest_bind(struct vcpu *, struct pirq *, int will_share); > -extern void pirq_guest_unbind(struct domain *d, struct pirq *); > -extern void pirq_set_affinity(struct domain *d, int irq, const cpumask_t *); > -extern irq_desc_t

[XEN PATCH 1/3] xen/irq: add missing parameter names

2023-07-24 Thread Federico Serafini
Add missing parameter names thus addressing violations of MISRA C:2012 Rule 8.2: "Function types shall be in prototype form with named parameters". No functional changes. Signed-off-by: Federico Serafini --- xen/include/xen/irq.h | 59 ---