diff options
author | Zhao Yakui <yakui.zhao@intel.com> | 2009-06-23 23:49:49 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-06-24 01:13:15 -0400 |
commit | 74cad4ee9839669ad920257678ea0bf0a818cd3b (patch) | |
tree | a32e8b4baf67eedb2e9dbc9799c326b92017e1ed /drivers/acpi/processor_core.c | |
parent | 07a2039b8eb0af4ff464efd3dfd95de5c02648c6 (diff) |
ACPI: Make ACPI processor proc I/F depend on the ACPI_PROCFS
Now whether the ACPI processor proc I/F is registered depends on the
CONFIG_PROC. It had better depend on the CONFIG_ACPI_PROCFS.
When the CONFIG_ACPI_PROCFS is unset in kernel configuration, the
ACPI processor proc I/F won't be registered.
Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/processor_core.c')
-rw-r--r-- | drivers/acpi/processor_core.c | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c index 23f0fb84f1c..1b166c1be16 100644 --- a/drivers/acpi/processor_core.c +++ b/drivers/acpi/processor_core.c | |||
@@ -81,7 +81,9 @@ MODULE_LICENSE("GPL"); | |||
81 | static int acpi_processor_add(struct acpi_device *device); | 81 | static int acpi_processor_add(struct acpi_device *device); |
82 | static int acpi_processor_start(struct acpi_device *device); | 82 | static int acpi_processor_start(struct acpi_device *device); |
83 | static int acpi_processor_remove(struct acpi_device *device, int type); | 83 | static int acpi_processor_remove(struct acpi_device *device, int type); |
84 | #ifdef CONFIG_ACPI_PROCFS | ||
84 | static int acpi_processor_info_open_fs(struct inode *inode, struct file *file); | 85 | static int acpi_processor_info_open_fs(struct inode *inode, struct file *file); |
86 | #endif | ||
85 | static void acpi_processor_notify(struct acpi_device *device, u32 event); | 87 | static void acpi_processor_notify(struct acpi_device *device, u32 event); |
86 | static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu); | 88 | static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu); |
87 | static int acpi_processor_handle_eject(struct acpi_processor *pr); | 89 | static int acpi_processor_handle_eject(struct acpi_processor *pr); |
@@ -110,7 +112,7 @@ static struct acpi_driver acpi_processor_driver = { | |||
110 | 112 | ||
111 | #define INSTALL_NOTIFY_HANDLER 1 | 113 | #define INSTALL_NOTIFY_HANDLER 1 |
112 | #define UNINSTALL_NOTIFY_HANDLER 2 | 114 | #define UNINSTALL_NOTIFY_HANDLER 2 |
113 | 115 | #ifdef CONFIG_ACPI_PROCFS | |
114 | static const struct file_operations acpi_processor_info_fops = { | 116 | static const struct file_operations acpi_processor_info_fops = { |
115 | .owner = THIS_MODULE, | 117 | .owner = THIS_MODULE, |
116 | .open = acpi_processor_info_open_fs, | 118 | .open = acpi_processor_info_open_fs, |
@@ -118,6 +120,7 @@ static const struct file_operations acpi_processor_info_fops = { | |||
118 | .llseek = seq_lseek, | 120 | .llseek = seq_lseek, |
119 | .release = single_release, | 121 | .release = single_release, |
120 | }; | 122 | }; |
123 | #endif | ||
121 | 124 | ||
122 | DEFINE_PER_CPU(struct acpi_processor *, processors); | 125 | DEFINE_PER_CPU(struct acpi_processor *, processors); |
123 | struct acpi_processor_errata errata __read_mostly; | 126 | struct acpi_processor_errata errata __read_mostly; |
@@ -316,6 +319,7 @@ static int acpi_processor_set_pdc(struct acpi_processor *pr) | |||
316 | FS Interface (/proc) | 319 | FS Interface (/proc) |
317 | -------------------------------------------------------------------------- */ | 320 | -------------------------------------------------------------------------- */ |
318 | 321 | ||
322 | #ifdef CONFIG_ACPI_PROCFS | ||
319 | static struct proc_dir_entry *acpi_processor_dir = NULL; | 323 | static struct proc_dir_entry *acpi_processor_dir = NULL; |
320 | 324 | ||
321 | static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset) | 325 | static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset) |
@@ -388,7 +392,6 @@ static int acpi_processor_add_fs(struct acpi_device *device) | |||
388 | return -EIO; | 392 | return -EIO; |
389 | return 0; | 393 | return 0; |
390 | } | 394 | } |
391 | |||
392 | static int acpi_processor_remove_fs(struct acpi_device *device) | 395 | static int acpi_processor_remove_fs(struct acpi_device *device) |
393 | { | 396 | { |
394 | 397 | ||
@@ -405,6 +408,16 @@ static int acpi_processor_remove_fs(struct acpi_device *device) | |||
405 | 408 | ||
406 | return 0; | 409 | return 0; |
407 | } | 410 | } |
411 | #else | ||
412 | static inline int acpi_processor_add_fs(struct acpi_device *device) | ||
413 | { | ||
414 | return 0; | ||
415 | } | ||
416 | static inline int acpi_processor_remove_fs(struct acpi_device *device) | ||
417 | { | ||
418 | return 0; | ||
419 | } | ||
420 | #endif | ||
408 | 421 | ||
409 | /* Use the acpiid in MADT to map cpus in case of SMP */ | 422 | /* Use the acpiid in MADT to map cpus in case of SMP */ |
410 | 423 | ||
@@ -1147,11 +1160,11 @@ static int __init acpi_processor_init(void) | |||
1147 | (struct acpi_table_header **)&madt))) | 1160 | (struct acpi_table_header **)&madt))) |
1148 | madt = NULL; | 1161 | madt = NULL; |
1149 | #endif | 1162 | #endif |
1150 | 1163 | #ifdef CONFIG_ACPI_PROCFS | |
1151 | acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir); | 1164 | acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
1152 | if (!acpi_processor_dir) | 1165 | if (!acpi_processor_dir) |
1153 | return -ENOMEM; | 1166 | return -ENOMEM; |
1154 | 1167 | #endif | |
1155 | /* | 1168 | /* |
1156 | * Check whether the system is DMI table. If yes, OSPM | 1169 | * Check whether the system is DMI table. If yes, OSPM |
1157 | * should not use mwait for CPU-states. | 1170 | * should not use mwait for CPU-states. |
@@ -1179,7 +1192,9 @@ out_cpuidle: | |||
1179 | cpuidle_unregister_driver(&acpi_idle_driver); | 1192 | cpuidle_unregister_driver(&acpi_idle_driver); |
1180 | 1193 | ||
1181 | out_proc: | 1194 | out_proc: |
1195 | #ifdef CONFIG_ACPI_PROCFS | ||
1182 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); | 1196 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
1197 | #endif | ||
1183 | 1198 | ||
1184 | return result; | 1199 | return result; |
1185 | } | 1200 | } |
@@ -1196,7 +1211,9 @@ static void __exit acpi_processor_exit(void) | |||
1196 | 1211 | ||
1197 | cpuidle_unregister_driver(&acpi_idle_driver); | 1212 | cpuidle_unregister_driver(&acpi_idle_driver); |
1198 | 1213 | ||
1214 | #ifdef CONFIG_ACPI_PROCFS | ||
1199 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); | 1215 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
1216 | #endif | ||
1200 | 1217 | ||
1201 | return; | 1218 | return; |
1202 | } | 1219 | } |