Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00480324 authored by Jagan Teki's avatar Jagan Teki Committed by Dmitry Torokhov
Browse files

Input: max11801_ts - add missing of_match_table



Added missing of_match_table for max11801_ts driver with compatible as
"maxim,max11801_ts"

Signed-off-by: default avatarJagan Teki <jagan@amarulasolutions.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent aa0e26bb
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -224,9 +224,16 @@ static const struct i2c_device_id max11801_ts_id[] = {
};
};
MODULE_DEVICE_TABLE(i2c, 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 = {
static struct i2c_driver max11801_ts_driver = {
	.driver = {
	.driver = {
		.name	= "max11801_ts",
		.name	= "max11801_ts",
		.of_match_table = max11801_ts_dt_ids,
	},
	},
	.id_table	= max11801_ts_id,
	.id_table	= max11801_ts_id,
	.probe		= max11801_ts_probe,
	.probe		= max11801_ts_probe,