diff options
author | Feng Tang <feng.tang@intel.com> | 2009-07-28 05:41:53 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-08-28 19:57:29 -0400 |
commit | e55a5999ffcf72dc4d43d73618957964cb87065a (patch) | |
tree | da891ef97f9b51b03cd64077f79a09ea361b1599 /include/linux/acpi.h | |
parent | e5b8fc6ac158f65598f58dba2c0d52ba3b412f52 (diff) |
ACPI: Handle CONFIG_ACPI=n better from linux/acpi.h
linux/acpi.h is the top level header for interfacing
with the ACPI sub-system, so acpi_disabled should be
up there instead of down in asm/acpi.h -- particularly
since asm/acpi.h doesn't exist for all architectures.
Same story for acpi_table_parse(), which is a top-level
API to Linux/ACPI.
This is necessary for building some code that
used to always depend on CONFIG_ACPI=y, but will soon
also need to build with CONFIG_ACPI=n.
Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux/acpi.h')
-rw-r--r-- | include/linux/acpi.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 34321cfffeab..3fce811bf9ac 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -292,7 +292,10 @@ void __init acpi_s4_no_nvs(void); | |||
292 | extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags); | 292 | extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags); |
293 | extern void acpi_early_init(void); | 293 | extern void acpi_early_init(void); |
294 | 294 | ||
295 | #else /* CONFIG_ACPI */ | 295 | #else /* !CONFIG_ACPI */ |
296 | |||
297 | #define acpi_disabled 1 | ||
298 | |||
296 | static inline void acpi_early_init(void) { } | 299 | static inline void acpi_early_init(void) { } |
297 | 300 | ||
298 | static inline int early_acpi_boot_init(void) | 301 | static inline int early_acpi_boot_init(void) |
@@ -331,5 +334,11 @@ static inline int acpi_check_mem_region(resource_size_t start, | |||
331 | return 0; | 334 | return 0; |
332 | } | 335 | } |
333 | 336 | ||
337 | struct acpi_table_header; | ||
338 | static inline int acpi_table_parse(char *id, | ||
339 | int (*handler)(struct acpi_table_header *)) | ||
340 | { | ||
341 | return -1; | ||
342 | } | ||
334 | #endif /* !CONFIG_ACPI */ | 343 | #endif /* !CONFIG_ACPI */ |
335 | #endif /*_LINUX_ACPI_H*/ | 344 | #endif /*_LINUX_ACPI_H*/ |