| #ifndef _ASM_SH_TOPOLOGY_H |
| #define _ASM_SH_TOPOLOGY_H |
| /* sched_domains SD_NODE_INIT for sh machines */ |
| #define SD_NODE_INIT (struct sched_domain) { \ |
| .flags = SD_LOAD_BALANCE \ |
| .last_balance = jiffies, \ |
| .nr_balance_failed = 0, \ |
| #define cpu_to_node(cpu) ((void)(cpu),0) |
| #define parent_node(node) ((void)(node),0) |
| #define cpumask_of_node(node) ((void)node, cpu_online_mask) |
| #define pcibus_to_node(bus) ((void)(bus), -1) |
| #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \ |
| cpumask_of_node(pcibus_to_node(bus))) |
| #include <asm-generic/topology.h> |
| #endif /* _ASM_SH_TOPOLOGY_H */ |