Commit 6d81dc3c authored by Lee Jones's avatar Lee Jones

mfd: kempld-core: Fix unused variable 'kempld_acpi_table' when !ACPI

 drivers/mfd/kempld-core.c:556:36: warning: unused variable 'kempld_acpi_table' [-Wunused-const-variable]
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 328162a8
......@@ -553,11 +553,13 @@ static int kempld_remove(struct platform_device *pdev)
return 0;
}
#ifdef CONFIG_ACPI
static const struct acpi_device_id kempld_acpi_table[] = {
{ "KEM0001", (kernel_ulong_t)&kempld_platform_data_generic },
{}
};
MODULE_DEVICE_TABLE(acpi, kempld_acpi_table);
#endif
static struct platform_driver kempld_driver = {
.driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment