Some of these do not follow the rules. Make sure the driver name matches
the compatible string in all cases.

Signed-off-by: Simon Glass <s...@chromium.org>
---

Changes in v2:
- New patch

 arch/sandbox/dts/test.dts     | 4 ++--
 drivers/i2c/i2c-emul-uclass.c | 4 ++--
 drivers/rtc/i2c_rtc_emul.c    | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index e95f4631bf2..b8d3be543c9 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -558,10 +558,10 @@
                                sandbox,size = <256>;
                        };
                        emul0: emul0 {
-                               compatible = "sandbox,i2c-rtc";
+                               compatible = "sandbox,i2c-rtc-emul";
                        };
                        emul1: emull {
-                               compatible = "sandbox,i2c-rtc";
+                               compatible = "sandbox,i2c-rtc-emul";
                        };
                };
 
diff --git a/drivers/i2c/i2c-emul-uclass.c b/drivers/i2c/i2c-emul-uclass.c
index 085b824e895..75d79883380 100644
--- a/drivers/i2c/i2c-emul-uclass.c
+++ b/drivers/i2c/i2c-emul-uclass.c
@@ -85,8 +85,8 @@ static const struct udevice_id i2c_emul_parent_ids[] = {
        { }
 };
 
-U_BOOT_DRIVER(i2c_emul_parent_drv) = {
-       .name           = "i2c_emul_parent_drv",
+U_BOOT_DRIVER(sandbox_i2c_emul_parent) = {
+       .name           = "sandbox_i2c_emul_parent",
        .id             = UCLASS_I2C_EMUL_PARENT,
        .of_match       = i2c_emul_parent_ids,
 };
diff --git a/drivers/rtc/i2c_rtc_emul.c b/drivers/rtc/i2c_rtc_emul.c
index f25b976e54d..fdc885c518b 100644
--- a/drivers/rtc/i2c_rtc_emul.c
+++ b/drivers/rtc/i2c_rtc_emul.c
@@ -223,7 +223,7 @@ static int sandbox_i2c_rtc_bind(struct udevice *dev)
 }
 
 static const struct udevice_id sandbox_i2c_rtc_ids[] = {
-       { .compatible = "sandbox,i2c-rtc" },
+       { .compatible = "sandbox,i2c-rtc-emul" },
        { }
 };
 
-- 
2.30.0.365.g02bc693789-goog

Reply via email to