diff options
author | jhb <jhb@FreeBSD.org> | 2007-06-05 18:57:48 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2007-06-05 18:57:48 +0000 |
commit | 7dc94bf582c34bed1bb958dc5d89bf318be62a25 (patch) | |
tree | d24714d2e095ee9cca54ffc70ae0593f263fd2f3 /sys | |
parent | 8e2bea078c1720a630e35ecbd831eae8ee5e982f (diff) | |
download | FreeBSD-src-7dc94bf582c34bed1bb958dc5d89bf318be62a25.zip FreeBSD-src-7dc94bf582c34bed1bb958dc5d89bf318be62a25.tar.gz |
Move a warning under bootverbose as no machines that trigger it have ended
up being broken.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/io_apic.c | 2 | ||||
-rw-r--r-- | sys/i386/i386/io_apic.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/io_apic.c b/sys/amd64/amd64/io_apic.c index 05b93ce..79796db 100644 --- a/sys/amd64/amd64/io_apic.c +++ b/sys/amd64/amd64/io_apic.c @@ -492,7 +492,7 @@ ioapic_create(vm_paddr_t addr, int32_t apic_id, int intbase) intbase = next_ioapic_base; printf("ioapic%u: Assuming intbase of %d\n", io->io_id, intbase); - } else if (intbase != next_ioapic_base) + } else if (intbase != next_ioapic_base && bootverbose) printf("ioapic%u: WARNING: intbase %d != expected base %d\n", io->io_id, intbase, next_ioapic_base); io->io_intbase = intbase; diff --git a/sys/i386/i386/io_apic.c b/sys/i386/i386/io_apic.c index 88667762..b038724 100644 --- a/sys/i386/i386/io_apic.c +++ b/sys/i386/i386/io_apic.c @@ -492,7 +492,7 @@ ioapic_create(vm_paddr_t addr, int32_t apic_id, int intbase) intbase = next_ioapic_base; printf("ioapic%u: Assuming intbase of %d\n", io->io_id, intbase); - } else if (intbase != next_ioapic_base) + } else if (intbase != next_ioapic_base && bootverbose) printf("ioapic%u: WARNING: intbase %d != expected base %d\n", io->io_id, intbase, next_ioapic_base); io->io_intbase = intbase; |