[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20231016211854.2901427-1-Frank.Li@nxp.com>
Date: Mon, 16 Oct 2023 17:18:53 -0400
From: Frank Li <Frank.Li@....com>
To: krzysztof.kozlowski@...aro.org
Cc: Frank.li@....com, alexander.stein@...tq-group.com,
alexandre.belloni@...tlin.com, conor+dt@...nel.org,
conor.culhane@...vaco.com, conor@...nel.org,
devicetree@...r.kernel.org, festevam@...il.com, haibo.chen@....com,
imx@...ts.linux.dev, joe@...ches.com, kernel@...gutronix.de,
krzysztof.kozlowski+dt@...aro.org,
linux-arm-kernel@...ts.infradead.org,
linux-i3c@...ts.infradead.org, linux-imx@....com,
linux-kernel@...r.kernel.org, miquel.raynal@...tlin.com,
peng.fan@....com, ping.bai@....com, robh+dt@...nel.org,
s.hauer@...gutronix.de, shawnguo@...nel.org, sherry.sun@....com,
xiaoning.wang@....com
Subject: [PATCH 1/2] i3c: master: svc: fix compatibility string mismatch with binding doc
In the binding documentation, the compatible string is specified as
'silvaco,i3c-master-v1', but in the driver, it is defined as
'silvaco,i3c-master'.
Add 'silvaco,i3c-master-v1' to the driver and deprecates
'silvaco,i3c-master' to ensure compatibility with the documentation.
Signed-off-by: Frank Li <Frank.Li@....com>
---
Notes:
Change from v1 to v2
- update driver by using compatible string silvaco,i3c-master-v1
drivers/i3c/master/svc-i3c-master.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c
index cf932ee056ef..4c74b11b13c6 100644
--- a/drivers/i3c/master/svc-i3c-master.c
+++ b/drivers/i3c/master/svc-i3c-master.c
@@ -1650,7 +1650,8 @@ static const struct dev_pm_ops svc_i3c_pm_ops = {
};
static const struct of_device_id svc_i3c_master_of_match_tbl[] = {
- { .compatible = "silvaco,i3c-master" },
+ { .compatible = "silvaco,i3c-master" }, /* deprecated */
+ { .compatible = "silvaco,i3c-master-v1"},
{ /* sentinel */ },
};
MODULE_DEVICE_TABLE(of, svc_i3c_master_of_match_tbl);
--
2.34.1
Powered by blists - more mailing lists