All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] drm/i2c: tda998x: Change the compatible strings
@ 2014-03-21 10:55 ` Jean-Francois Moine
  0 siblings, 0 replies; 18+ messages in thread
From: Jean-Francois Moine @ 2014-03-21 10:55 UTC (permalink / raw)
  To: Russell King - ARM Linux, devicetree
  Cc: dri-devel, linux-arm-kernel, linux-kernel

The tda998x driver accepts only 3 chips from the TDA998x family.
This patch changes the driver compatible strings to these chips.

Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
---
v2: change the subject to drm/i2c
This patch applies after
	drm/i2c: tda998x: Fix lack of required reg in DT documentation
---
 Documentation/devicetree/bindings/drm/i2c/tda998x.txt | 4 ++--
 drivers/gpu/drm/i2c/tda998x_drv.c                     | 4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/Documentation/devicetree/bindings/drm/i2c/tda998x.txt b/Documentation/devicetree/bindings/drm/i2c/tda998x.txt
index fc7effa..e3f3d65 100644
--- a/Documentation/devicetree/bindings/drm/i2c/tda998x.txt
+++ b/Documentation/devicetree/bindings/drm/i2c/tda998x.txt
@@ -1,7 +1,7 @@
 Device-Tree bindings for the NXP TDA998x HDMI transmitter
 
 Required properties;
-  - compatible: must be "nxp,tda998x"
+  - compatible: may be "nxp,tda9989", "nxp,tda19988" or "nxp,tda19989"
 
   - reg: I2C address
 
@@ -20,7 +20,7 @@ Optional properties:
 Example:
 
 	tda998x: hdmi-encoder {
-		compatible = "nxp,tda998x";
+		compatible = "nxp,tda19988";
 		reg = <0x70>;
 		interrupt-parent = <&gpio0>;
 		interrupts = <27 2>;		/* falling edge */
diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c
index 48af5ca..fd6751c 100644
--- a/drivers/gpu/drm/i2c/tda998x_drv.c
+++ b/drivers/gpu/drm/i2c/tda998x_drv.c
@@ -1367,7 +1367,9 @@ fail:
 
 #ifdef CONFIG_OF
 static const struct of_device_id tda998x_dt_ids[] = {
-	{ .compatible = "nxp,tda998x", },
+	{ .compatible = "nxp,tda9989", },
+	{ .compatible = "nxp,tda19988", },
+	{ .compatible = "nxp,tda19989", },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, tda998x_dt_ids);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2014-03-23 22:45 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-21 10:55 [PATCH v2] drm/i2c: tda998x: Change the compatible strings Jean-Francois Moine
2014-03-21 10:55 ` Jean-Francois Moine
2014-03-21 10:55 ` Jean-Francois Moine
2014-03-21 13:37 ` Sebastian Hesselbarth
2014-03-21 13:37   ` Sebastian Hesselbarth
2014-03-21 13:37   ` Sebastian Hesselbarth
2014-03-23 10:19   ` Jean-Francois Moine
2014-03-23 10:19     ` Jean-Francois Moine
2014-03-23 10:19     ` Jean-Francois Moine
2014-03-23 18:12     ` Sebastian Hesselbarth
2014-03-23 18:12       ` Sebastian Hesselbarth
2014-03-23 18:12       ` Sebastian Hesselbarth
2014-03-23 20:03       ` Russell King - ARM Linux
2014-03-23 20:03         ` Russell King - ARM Linux
2014-03-23 20:03         ` Russell King - ARM Linux
2014-03-23 22:44         ` Sebastian Hesselbarth
2014-03-23 22:44           ` Sebastian Hesselbarth
2014-03-23 22:44           ` Sebastian Hesselbarth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.