diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-04-24 14:57:48 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-04-24 16:36:54 +0300 |
commit | ca1b88622e9c16df7b1e0a57e9c6c2300321bed4 (patch) | |
tree | 6807aad02f5210e30c1b8250ef4e02b0efd42212 /arch/x86/include/asm/x86_init.h | |
parent | 9a93d4736ec5ec322ec8f240a292c1a86cd0876d (diff) | |
download | linux-ca1b88622e9c16df7b1e0a57e9c6c2300321bed4.tar.xz |
x86: Remove more unmodified io_apic_ops
io_apic_ops.init() is either NULL, if IO-APIC support is disabled at
compile time or native_io_apic_init_mappings(). No point to have that
as we can achieve the same thing with an empty inline.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r-- | arch/x86/include/asm/x86_init.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 844b37d55a44..48d34d28f5a6 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h @@ -180,7 +180,6 @@ struct x86_msi_ops { }; struct x86_io_apic_ops { - void (*init) (void); unsigned int (*read) (unsigned int apic, unsigned int reg); void (*disable)(void); }; |