Input: max11801_ts - add missing of_match_table
authorJagan Teki <jagan@amarulasolutions.com>
Wed, 29 Mar 2017 07:16:35 +0000 (00:16 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Wed, 29 Mar 2017 07:25:03 +0000 (00:25 -0700)
Added missing of_match_table for max11801_ts driver with compatible as
"maxim,max11801_ts"

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/max11801_ts.c

index a595ae5284e36887767ce5fda19ec68055daafa5..72ca3efb5781e8f9934b6e4f9298facdd9dd5225 100644 (file)
@@ -224,9 +224,16 @@ static const struct i2c_device_id max11801_ts_id[] = {
 };
 MODULE_DEVICE_TABLE(i2c, max11801_ts_id);
 
+static const struct of_device_id max11801_ts_dt_ids[] = {
+       { .compatible = "maxim,max11801" },
+       { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(of, max11801_ts_dt_ids);
+
 static struct i2c_driver max11801_ts_driver = {
        .driver = {
                .name   = "max11801_ts",
+               .of_match_table = max11801_ts_dt_ids,
        },
        .id_table       = max11801_ts_id,
        .probe          = max11801_ts_probe,