x86: Fix up driver names to avoid dtoc warnings

At present there are a lot of dtoc warnings reported when building
chromebook_coral, of the form:

   WARNING: the driver intel_apl_lpc was not found in the driver list

Correct these by using driver names that matches their compatible string.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
Simon Glass
2020-11-05 14:58:45 +08:00
committed by Bin Meng
parent ed0f868d50
commit 9d20db0483
14 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -482,8 +482,8 @@ static const struct udevice_id tsc_timer_ids[] = {
{ }
};
U_BOOT_DRIVER(tsc_timer) = {
.name = "tsc_timer",
U_BOOT_DRIVER(x86_tsc_timer) = {
.name = "x86_tsc_timer",
.id = UCLASS_TIMER,
.of_match = tsc_timer_ids,
.probe = tsc_timer_probe,