diff options
author | Simon Glass <sjg@chromium.org> | 2021-02-03 06:01:17 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-03-22 19:23:27 +1300 |
commit | c4085d733bd22cc77815283f72fda56240e76a45 (patch) | |
tree | d353c680bf470388c31374b020bf25806b6cc71f /drivers | |
parent | 23f40a3abfab9540f91bff966a33a232b56247e2 (diff) | |
download | u-boot-c4085d733bd22cc77815283f72fda56240e76a45.zip u-boot-c4085d733bd22cc77815283f72fda56240e76a45.tar.gz u-boot-c4085d733bd22cc77815283f72fda56240e76a45.tar.bz2 |
sandbox: i2c: Rename driver names to work with of-platdata
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 <sjg@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/i2c-emul-uclass.c | 4 | ||||
-rw-r--r-- | drivers/rtc/i2c_rtc_emul.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/i2c-emul-uclass.c b/drivers/i2c/i2c-emul-uclass.c index 085b824..75d7988 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 f25b976..fdc885c 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" }, { } }; |