diff options
author | Len Brown <len.brown@intel.com> | 2011-01-12 16:11:46 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-01-12 16:11:46 -0500 |
commit | 4263d9a3ae4d15785897d0543bb59316c84ee605 (patch) | |
tree | e15665d7179d8355079312ac7e6d72d504c9561d /include | |
parent | eab001bf88f68653e87a7d90124a2241131dbeda (diff) | |
parent | 6fed05c9c9812b5882bc708f4da4fa8d5df2875c (diff) |
Merge branch 'suspend-ioremap-cache' into release
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/acpi.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index fa7ed6a983d..eb176bb1b15 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -254,15 +254,6 @@ void __init acpi_old_suspend_ordering(void); void __init acpi_nvs_nosave(void); #endif /* CONFIG_PM_SLEEP */ -#ifdef CONFIG_ACPI_SLEEP -int suspend_nvs_register(unsigned long start, unsigned long size); -#else -static inline int suspend_nvs_register(unsigned long a, unsigned long b) -{ - return 0; -} -#endif - struct acpi_osc_context { char *uuid_str; /* uuid string */ int rev; @@ -361,4 +352,14 @@ static inline int acpi_table_parse(char *id, return -1; } #endif /* !CONFIG_ACPI */ + +#ifdef CONFIG_ACPI_SLEEP +int suspend_nvs_register(unsigned long start, unsigned long size); +#else +static inline int suspend_nvs_register(unsigned long a, unsigned long b) +{ + return 0; +} +#endif + #endif /*_LINUX_ACPI_H*/ |