提交 ed0f868d 编写于 作者: S Simon Glass 提交者: Bin Meng

cros_ec: Fix up driver names to avoid dtoc warnings

Fix the dtoc warning in these file by using a driver name that matches the
compatible string.
Signed-off-by: NSimon Glass <sjg@chromium.org>
Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
上级 35b7ca76
......@@ -231,8 +231,8 @@ static const struct udevice_id cros_ec_ids[] = {
{ }
};
U_BOOT_DRIVER(cros_ec_i2c) = {
.name = "cros_ec_i2c",
U_BOOT_DRIVER(google_cros_ec_i2c) = {
.name = "google_cros_ec_i2c",
.id = UCLASS_CROS_EC,
.of_match = cros_ec_ids,
.probe = cros_ec_probe,
......
......@@ -243,8 +243,8 @@ static const struct udevice_id cros_ec_ids[] = {
{ }
};
U_BOOT_DRIVER(cros_ec_lpc) = {
.name = "cros_ec_lpc",
U_BOOT_DRIVER(google_cros_ec_lpc) = {
.name = "google_cros_ec_lpc",
.id = UCLASS_CROS_EC,
.of_match = cros_ec_ids,
.probe = cros_ec_probe,
......
......@@ -184,8 +184,8 @@ static const struct udevice_id cros_ec_ids[] = {
{ }
};
U_BOOT_DRIVER(cros_ec_spi) = {
.name = "cros_ec_spi",
U_BOOT_DRIVER(google_cros_ec_spi) = {
.name = "google_cros_ec_spi",
.id = UCLASS_CROS_EC,
.of_match = cros_ec_ids,
.probe = cros_ec_probe,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册