summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorMichal Hocko <mhocko@suse.cz>2013-02-07 12:26:39 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2013-02-14 15:25:26 +1100
commita6b7fca47447c11bf8725b780aa60692b4197400 (patch)
tree35c012d7694b2f80c3c16e1a6062c8097fab5abb /include/linux
parent8111b4bc80e18fb042a6fc4dbf985febd8b15a9d (diff)
acpi, memory-hotplug: parse SRAT before memblock is ready fix
alnoconfig complains: arch/x86/kernel/setup.c: In function `setup_arch': arch/x86/kernel/setup.c:917: error: implicit declaration of function `early_parse_srat' because early_parse_srat is not declared for !CONFIG_ACPI. Moreover it is defined only for CONFIG_ACPI_NUMA. I am not sure what is the correct way to fix this but I guess that providing an empty definition for !CONFIG_ACPI_NUMA is OK. Signed-off-by: Michal Hocko <mhocko@suse.cz> Cc: Tang Chen <tangchen@cn.fujitsu.com> Cc: Wen Congyang <wency@cn.fujitsu.com> Cc: Jiang Liu <jiang.liu@huawei.com> Cc: Jianguo Wu <wujianguo@huawei.com> Cc: Lai Jiangshan <laijs@cn.fujitsu.com> Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/acpi.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index b7cc2309671f..f46cfd73a553 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -94,7 +94,6 @@ int acpi_boot_init (void);
void acpi_boot_table_init (void);
int acpi_mps_check (void);
int acpi_numa_init (void);
-void __init early_parse_srat(void);
int acpi_table_init (void);
int acpi_table_parse(char *id, acpi_tbl_table_handler handler);
@@ -486,6 +485,14 @@ static inline bool acpi_driver_match_device(struct device *dev,
#endif /* !CONFIG_ACPI */
+#ifdef CONFIG_ACPI_NUMA
+void __init early_parse_srat(void);
+#else
+static inline void early_parse_srat(void)
+{
+}
+#endif
+
#ifdef CONFIG_ACPI
void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
u32 pm1a_ctrl, u32 pm1b_ctrl));