[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200506191718.2144752-2-angus@akkea.ca>
Date: Wed, 6 May 2020 12:17:17 -0700
From: Angus Ainslie <angus@...ea.ca>
To: angus@...ea.ca
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Rob Herring <robh+dt@...nel.org>,
Heikki Krogerus <heikki.krogerus@...ux.intel.com>,
linux-usb@...r.kernel.org, devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/2] usb: typec: tps6598x: add device tree hooks
Add a compatible string for the devicetree.
Signed-off-by: Angus Ainslie <angus@...ea.ca>
---
drivers/usb/typec/tps6598x.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/usb/typec/tps6598x.c b/drivers/usb/typec/tps6598x.c
index f661d8722ee0..2e71a35cc9d8 100644
--- a/drivers/usb/typec/tps6598x.c
+++ b/drivers/usb/typec/tps6598x.c
@@ -981,9 +981,16 @@ static const struct i2c_device_id tps6598x_id[] = {
};
MODULE_DEVICE_TABLE(i2c, tps6598x_id);
+static const struct of_device_id tps6598x_of_match[] = {
+ { .compatible = "ti,tps6598x", },
+ { },
+};
+MODULE_DEVICE_TABLE(of, tps6598x_of_match);
+
static struct i2c_driver tps6598x_i2c_driver = {
.driver = {
.name = "tps6598x",
+ .of_match_table = of_match_ptr(tps6598x_of_match),
},
.probe_new = tps6598x_probe,
.remove = tps6598x_remove,
--
2.25.1
Powered by blists - more mailing lists