Skip to content

Commit

Permalink
[IA64] fix typo in cpumask_of_pcibus()
Browse files Browse the repository at this point in the history
Impact: build fix

Fujita Tomonori reported:

 drivers/pci/probe.c: In function 'pci_bus_show_cpuaffinity':
 drivers/pci/probe.c:56: error: implicit declaration of function 'cpumask_from_node'
 drivers/pci/probe.c:56: warning: pointer/integer type mismatch in conditional expression
 make[3]: *** [drivers/pci/probe.o] Error 1
 make[2]: *** [drivers/pci] Error 2

FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jan 6, 2009
1 parent 4d9f943 commit 36c401a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/ia64/include/asm/topology.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ extern void arch_fix_phys_package_id(int num, u32 slot);

#define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
cpu_all_mask : \
cpumask_from_node(pcibus_to_node(bus)))
cpumask_of_node(pcibus_to_node(bus)))

#include <asm-generic/topology.h>

Expand Down

0 comments on commit 36c401a

Please sign in to comment.