diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2008-07-14 18:44:51 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-18 14:27:43 +0200 |
commit | baa1318841d4bc95d783e6c15219b264720002c8 (patch) | |
tree | b8c198abefeafa51e883e30d3d5b970980a61ffc /include/asm-x86/apic.h | |
parent | 17c44697f293cf24cbbf51b4a5bd15f4fbc88b90 (diff) |
x86: APIC: Make apic_verbosity unsigned
As a microoptimisation, make apic_verbosity unsigned. This will make
apic_printk(APIC_QUIET, ...) expand into just printk(...) with the
surrounding condition and a reference to apic_verbosity removed.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/apic.h')
-rw-r--r-- | include/asm-x86/apic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/apic.h b/include/asm-x86/apic.h index ea866baccefc..a3dd4c3e3629 100644 --- a/include/asm-x86/apic.h +++ b/include/asm-x86/apic.h @@ -37,7 +37,7 @@ extern void generic_apic_probe(void); #ifdef CONFIG_X86_LOCAL_APIC -extern int apic_verbosity; +extern unsigned int apic_verbosity; extern int local_apic_timer_c2_ok; extern int ioapic_force; |