aboutsummaryrefslogtreecommitdiff
path: root/drivers/i3c
diff options
context:
space:
mode:
authorGravatar Frank Li <Frank.Li@nxp.com> 2023-10-17 15:46:56 -0400
committerGravatar Alexandre Belloni <alexandre.belloni@bootlin.com> 2023-11-03 20:02:45 +0100
commit8911eae9c8a947e5c1cc4fcce40473f1f5e475cd (patch)
tree45c87d86b9fe0805af38f4994baeede1bd40bd82 /drivers/i3c
parenti3c: master: svc: fix random hot join failure since timeout error (diff)
downloadlinux-8911eae9c8a947e5c1cc4fcce40473f1f5e475cd.tar.gz
linux-8911eae9c8a947e5c1cc4fcce40473f1f5e475cd.tar.bz2
linux-8911eae9c8a947e5c1cc4fcce40473f1f5e475cd.zip
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'. Rename 'silvaco,i3c-master' to 'silvaco,i3c-master-v1' to ensure compatibility with the documentation. Signed-off-by: Frank Li <Frank.Li@nxp.com> Link: https://lore.kernel.org/r/20231017194657.3199749-1-Frank.Li@nxp.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/i3c')
-rw-r--r--drivers/i3c/master/svc-i3c-master.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c
index b192a8b91e5d..cf703c00f633 100644
--- a/drivers/i3c/master/svc-i3c-master.c
+++ b/drivers/i3c/master/svc-i3c-master.c
@@ -1703,7 +1703,7 @@ 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-v1"},
{ /* sentinel */ },
};
MODULE_DEVICE_TABLE(of, svc_i3c_master_of_match_tbl);