From: Jean-Francois Moine <moinejf@free.fr>
To: devicetree@vger.kernel.org, Russell King <rmk+kernel@arm.linux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org,
dri-devel@lists.freedesktop.org, linux-media@vger.kernel.org
Subject: [PATCH v3] drm/i2c: tda998x: Deprecate "nxp,tda998x" in favour of "nxp,tda9989"
Date: Sun, 23 Mar 2014 18:35:49 +0100 [thread overview]
Message-ID: <20140323180246.1C3E54B0143@smtp2-g21.free.fr> (raw)
The tda998x driver accepts only 3 chips from the TDA998x family.
To avoid confusion with the other TDA998x chips, this patch changes
the driver compatible string to "nxp,tda9989".
As the previous compatible string is not actually used in any DT,
no compatibility is offered.
Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
---
v3:
- fix the I2C ID (the OF compatible is not used for such drivers)
- define only one compatible (Sebastian Hesselbarth)
- change the subject (Sebastian Hesselbarth)
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, 4 insertions(+), 4 deletions(-)
diff --git a/Documentation/devicetree/bindings/drm/i2c/tda998x.txt b/Documentation/devicetree/bindings/drm/i2c/tda998x.txt
index e9e4bce..9b41c7e 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: must be "nxp,tda9989"
- reg: I2C address
@@ -20,7 +20,7 @@ Optional properties:
Example:
tda998x: hdmi-encoder {
- compatible = "nxp,tda998x";
+ compatible = "nxp,tda9989";
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..249ef84 100644
--- a/drivers/gpu/drm/i2c/tda998x_drv.c
+++ b/drivers/gpu/drm/i2c/tda998x_drv.c
@@ -1367,14 +1367,14 @@ fail:
#ifdef CONFIG_OF
static const struct of_device_id tda998x_dt_ids[] = {
- { .compatible = "nxp,tda998x", },
+ { .compatible = "nxp,tda9989", },
{ }
};
MODULE_DEVICE_TABLE(of, tda998x_dt_ids);
#endif
static struct i2c_device_id tda998x_ids[] = {
- { "tda998x", 0 },
+ { "tda9989", 0 },
{ }
};
MODULE_DEVICE_TABLE(i2c, tda998x_ids);
--
1.9.1
reply other threads:[~2014-03-23 17:35 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140323180246.1C3E54B0143@smtp2-g21.free.fr \
--to=moinejf@free.fr \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-media@vger.kernel.org \
--cc=rmk+kernel@arm.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).