x86, io_apic: Introduce x86_io_apic_ops.print_entries for debugging
[platform/adaptation/renesas_rcar/renesas_kernel.git] / arch / x86 / kernel / x86_init.c
index 7a3d075..ee4af8b 100644 (file)
@@ -118,8 +118,10 @@ struct x86_msi_ops x86_msi = {
 };
 
 struct x86_io_apic_ops x86_io_apic_ops = {
-       .init   = native_io_apic_init_mappings,
-       .read   = native_io_apic_read,
-       .write  = native_io_apic_write,
-       .modify = native_io_apic_modify,
+       .init                   = native_io_apic_init_mappings,
+       .read                   = native_io_apic_read,
+       .write                  = native_io_apic_write,
+       .modify                 = native_io_apic_modify,
+       .disable                = native_disable_io_apic,
+       .print_entries          = native_io_apic_print_entries,
 };