On 05.12.2023 17:31, Nicola Vetrini wrote: > --- a/xen/drivers/char/ns16550.c > +++ b/xen/drivers/char/ns16550.c > @@ -73,7 +73,7 @@ static struct ns16550 {
With the variable even being static, ... > bool msi; > const struct ns16550_config_param *param; /* Points into .init.*! */ > #endif > -} ns16550_com[2] = { { 0 } }; > +} ns16550_com[2] = { }; ... what use is the initializer in the first place? Jan