Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+1 -1
+1 -1
arch/x86/pci/amd_bus.c
··· 578 578 /* assume all cpus from fam10h have IO ECS */ 579 579 if (boot_cpu_data.x86 < 0x10) 580 580 return 0; 581 - on_each_cpu(enable_pci_io_ecs_per_cpu, NULL, 1, 1); 581 + on_each_cpu(enable_pci_io_ecs_per_cpu, NULL, 1); 582 582 pci_probe |= PCI_HAS_IO_ECS; 583 583 return 0; 584 584 }