Procházet zdrojové kódy

generic-ipi: merge fix

fix merge fallout:

arch/x86/pci/amd_bus.c: In function ‘enable_pci_io_ecs':
arch/x86/pci/amd_bus.c:581: error: too many arguments to function ‘on_each_cpu'

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Ingo Molnar před 17 roky
rodič
revize
b3c9816b9f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      arch/x86/pci/amd_bus.c

+ 1 - 1
arch/x86/pci/amd_bus.c

@@ -578,7 +578,7 @@ static int __init enable_pci_io_ecs(void)
 	/* assume all cpus from fam10h have IO ECS */
 	/* assume all cpus from fam10h have IO ECS */
         if (boot_cpu_data.x86 < 0x10)
         if (boot_cpu_data.x86 < 0x10)
 		return 0;
 		return 0;
-	on_each_cpu(enable_pci_io_ecs_per_cpu, NULL, 1, 1);
+	on_each_cpu(enable_pci_io_ecs_per_cpu, NULL, 1);
 	pci_probe |= PCI_HAS_IO_ECS;
 	pci_probe |= PCI_HAS_IO_ECS;
 	return 0;
 	return 0;
 }
 }