[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging] xen/x86: ioapic: Use true/false in bad_ioapic_register()
commit 8c4aed6ee1073f01f257d170c14c41af7a9cfd39 Author: Julien Grall <jgrall@xxxxxxxxxx> AuthorDate: Fri Mar 27 18:16:22 2020 +0000 Commit: Julien Grall <jgrall@xxxxxxxxxx> CommitDate: Fri Apr 10 12:23:48 2020 +0100 xen/x86: ioapic: Use true/false in bad_ioapic_register() bad_ioapic_register() is returning a bool, so we should switch to true/false. Signed-off-by: Julien Grall <jgrall@xxxxxxxxxx> Reviewed-by: Wei Liu <wl@xxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/io_apic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/io_apic.c b/xen/arch/x86/io_apic.c index e98e08e9c8..9868933287 100644 --- a/xen/arch/x86/io_apic.c +++ b/xen/arch/x86/io_apic.c @@ -2531,10 +2531,10 @@ static __init bool bad_ioapic_register(unsigned int idx) { printk(KERN_WARNING "I/O APIC %#x registers return all ones, skipping!\n", mp_ioapics[idx].mpc_apicaddr); - return 1; + return true; } - return 0; + return false; } void __init init_ioapic_mappings(void) -- generated by git-patchbot for /home/xen/git/xen.git#staging
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |