From: Axel Lin <axel.lin@gmail.com>
Date: Sat, 26 Feb 2011 15:03:34 +0000 (+0800)
Subject: platform-driver-x86: intel_mid_thermal: fix unterminated platform_device_id table
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=47ae4352bece7b617a084770495b993fcd1a2be5;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

platform-driver-x86: intel_mid_thermal: fix unterminated platform_device_id table

The platform_device_id table is supposed to be zero-terminated.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
---

diff --git a/drivers/platform/x86/intel_mid_thermal.c b/drivers/platform/x86/intel_mid_thermal.c
index 1215c3096868..6c12db503161 100644
--- a/drivers/platform/x86/intel_mid_thermal.c
+++ b/drivers/platform/x86/intel_mid_thermal.c
@@ -543,6 +543,7 @@ static int mid_thermal_remove(struct platform_device *pdev)
 
 static const struct platform_device_id therm_id_table[] = {
        { DRIVER_NAME, 1 },
+       { }
 };
 
 static struct platform_driver mid_thermal_driver = {