Currently there's a printk statement triggered when no ucode loading
facilities are discovered. This statement should have severity INFO rather
than WARNING because it's not reporting anything wrong. Warnings ought
to be reserved for recoverable system errors.
Signed-off-by: Alejandro Vallejo <alejandro.vallejo@cloud.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
Release-acked-by: Henry Wang <Henry.Wang@arm.com>
if ( !ucode_ops.apply_microcode )
{
- printk(XENLOG_WARNING "Microcode loading not available\n");
+ printk(XENLOG_INFO "Microcode loading not available\n");
return -ENODEV;
}