From: Ross Lagerwall Date: Thu, 20 Apr 2017 13:18:00 +0000 (+0100) Subject: x86/microcode: Use the return value from early_microcode_update_cpu X-Git-Tag: 4.9.0-rc3~23 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1ca2bafa738e9c9136faf6d35e06b481701dd594;p=xen.git x86/microcode: Use the return value from early_microcode_update_cpu Use the return value from early_microcode_update_cpu rather than ignoring it. Signed-off-by: Ross Lagerwall Reviewed-by: Andrew Cooper Release-Acked-by: Julien Grall --- diff --git a/xen/arch/x86/microcode.c b/xen/arch/x86/microcode.c index 4e7dfcd573..7558202efa 100644 --- a/xen/arch/x86/microcode.c +++ b/xen/arch/x86/microcode.c @@ -431,5 +431,5 @@ int __init early_microcode_init(void) register_cpu_notifier(µcode_percpu_nfb); } - return 0; + return rc; }