From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix build error when CONFIG_ACPI is not enabled: arch/x86/kernel/e820.c:734: error:implicit declaration of function 'suspend_nvs_register' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> --- include/linux/acpi.h | 5 +++++ 1 file changed, 5 insertions(+) --- linux-next-20110112.orig/include/linux/acpi.h +++ linux-next-20110112/include/linux/acpi.h @@ -360,5 +360,10 @@ static inline int acpi_table_parse(char { return -1; } + +static inline int suspend_nvs_register(unsigned long a, unsigned long b) +{ + return 0; +} #endif /* !CONFIG_ACPI */ #endif /*_LINUX_ACPI_H*/ -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html