[SPARC64]: Move topology init code into new file, sysfs.c
[deliverable/linux.git] / arch / sparc64 / kernel / sysfs.c
CommitLineData
eff3414b
DM
1/* sysfs.c: Toplogy sysfs support code for sparc64.
2 *
3 * Copyright (C) 2007 David S. Miller <davem@davemloft.net>
4 */
5#include <linux/sysdev.h>
6#include <linux/cpu.h>
7#include <linux/smp.h>
8#include <linux/percpu.h>
9#include <linux/init.h>
10
11static DEFINE_PER_CPU(struct cpu, cpu_devices);
12
13static int __init topology_init(void)
14{
15 int cpu;
16
17 for_each_possible_cpu(cpu) {
18 struct cpu *c = &per_cpu(cpu_devices, cpu);
19
20 register_cpu(c, cpu);
21 }
22
23 return 0;
24}
25
26subsys_initcall(topology_init);
This page took 0.026418 seconds and 5 git commands to generate.