Skip to content

Commit 8911eae

Browse files
nxpfranklialexandrebelloni
authored andcommitted
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Alexandre Belloni <[email protected]>
1 parent 9aaeef1 commit 8911eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/i3c/master/svc-i3c-master.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ static const struct dev_pm_ops svc_i3c_pm_ops = {
17031703
};
17041704

17051705
static const struct of_device_id svc_i3c_master_of_match_tbl[] = {
1706-
{ .compatible = "silvaco,i3c-master" },
1706+
{ .compatible = "silvaco,i3c-master-v1"},
17071707
{ /* sentinel */ },
17081708
};
17091709
MODULE_DEVICE_TABLE(of, svc_i3c_master_of_match_tbl);

0 commit comments

Comments
 (0)