aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/acpi.h
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2011-01-12 16:03:20 -0500
committerLen Brown <len.brown@intel.com>2011-01-12 16:11:30 -0500
commit6fed05c9c9812b5882bc708f4da4fa8d5df2875c (patch)
treea9ad3082384d42b39110141ac85bfdf37bf5338c /include/linux/acpi.h
parent6d5bbf00d251cc73223a71422d69e069dc2e0b8d (diff)
ACPI / PM: Fix build problems for !CONFIG_ACPI related to NVS rework
The recent rework of the NVS saving/restoring code introduced two build issues for !CONFIG_ACPI, a warning in drivers/acpi/internal.h and an error in arch/x86/kernel/e820.c. Fix them by providing suitable static inline definitions of the relevant functions. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux/acpi.h')
-rw-r--r--include/linux/acpi.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index fa7ed6a983d0..eb176bb1b15b 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -254,15 +254,6 @@ void __init acpi_old_suspend_ordering(void);
254void __init acpi_nvs_nosave(void); 254void __init acpi_nvs_nosave(void);
255#endif /* CONFIG_PM_SLEEP */ 255#endif /* CONFIG_PM_SLEEP */
256 256
257#ifdef CONFIG_ACPI_SLEEP
258int suspend_nvs_register(unsigned long start, unsigned long size);
259#else
260static inline int suspend_nvs_register(unsigned long a, unsigned long b)
261{
262 return 0;
263}
264#endif
265
266struct acpi_osc_context { 257struct acpi_osc_context {
267 char *uuid_str; /* uuid string */ 258 char *uuid_str; /* uuid string */
268 int rev; 259 int rev;
@@ -361,4 +352,14 @@ static inline int acpi_table_parse(char *id,
361 return -1; 352 return -1;
362} 353}
363#endif /* !CONFIG_ACPI */ 354#endif /* !CONFIG_ACPI */
355
356#ifdef CONFIG_ACPI_SLEEP
357int suspend_nvs_register(unsigned long start, unsigned long size);
358#else
359static inline int suspend_nvs_register(unsigned long a, unsigned long b)
360{
361 return 0;
362}
363#endif
364
364#endif /*_LINUX_ACPI_H*/ 365#endif /*_LINUX_ACPI_H*/