hwmon: (asus-ec-sensors) add driver for ASUS EC
[sfrench/cifs-2.6.git] / drivers / hwmon / sch5636.c
index 39ff1c9b1df54334ded498f5a0b54c925dcf5712..269757bc3a9e0ee2b42a578b71e18df9a90f3ff7 100644 (file)
@@ -7,6 +7,7 @@
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #include <linux/module.h>
+#include <linux/mod_devicetable.h>
 #include <linux/init.h>
 #include <linux/slab.h>
 #include <linux/jiffies.h>
@@ -501,12 +502,21 @@ error:
        return err;
 }
 
+static const struct platform_device_id sch5636_device_id[] = {
+       {
+               .name = "sch5636",
+       },
+       { }
+};
+MODULE_DEVICE_TABLE(platform, sch5636_device_id);
+
 static struct platform_driver sch5636_driver = {
        .driver = {
                .name   = DRVNAME,
        },
        .probe          = sch5636_probe,
        .remove         = sch5636_remove,
+       .id_table       = sch5636_device_id,
 };
 
 module_platform_driver(sch5636_driver);