]> Git Repo - linux.git/commitdiff
i3c: master: svc: fix compatibility string mismatch with binding doc
authorFrank Li <[email protected]>
Tue, 17 Oct 2023 19:46:56 +0000 (15:46 -0400)
committerAlexandre Belloni <[email protected]>
Fri, 3 Nov 2023 19:02:45 +0000 (20:02 +0100)
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]>
drivers/i3c/master/svc-i3c-master.c

index b192a8b91e5d5b7c6a185e795fdc790d5f799793..cf703c00f63349c7b989efe08365f080a119e2c2 100644 (file)
@@ -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);
This page took 0.059299 seconds and 4 git commands to generate.