diff options
Diffstat (limited to 'arch/x86/kernel/cpuid.c')
-rw-r--r-- | arch/x86/kernel/cpuid.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpuid.c b/arch/x86/kernel/cpuid.c index f4548c93ccf..dffb102fb8c 100644 --- a/arch/x86/kernel/cpuid.c +++ b/arch/x86/kernel/cpuid.c | |||
@@ -150,7 +150,7 @@ static const struct file_operations cpuid_fops = { | |||
150 | .open = cpuid_open, | 150 | .open = cpuid_open, |
151 | }; | 151 | }; |
152 | 152 | ||
153 | static int cpuid_device_create(int i) | 153 | static int __cpuinit cpuid_device_create(int i) |
154 | { | 154 | { |
155 | int err = 0; | 155 | int err = 0; |
156 | struct device *dev; | 156 | struct device *dev; |
@@ -161,7 +161,9 @@ static int cpuid_device_create(int i) | |||
161 | return err; | 161 | return err; |
162 | } | 162 | } |
163 | 163 | ||
164 | static int cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) | 164 | static int __cpuinit cpuid_class_cpu_callback(struct notifier_block *nfb, |
165 | unsigned long action, | ||
166 | void *hcpu) | ||
165 | { | 167 | { |
166 | unsigned int cpu = (unsigned long)hcpu; | 168 | unsigned int cpu = (unsigned long)hcpu; |
167 | 169 | ||