summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/intel_common/itss.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-10-05 05:27:01 -0600
committerBin Meng <bmeng.cn@gmail.com>2020-11-05 14:58:45 +0800
commit9d20db0483d54b507472fc33ee0c8a71d6c71c85 (patch)
tree9c45e23b00bab3f7ce06631fc072583e761da19f /arch/x86/cpu/intel_common/itss.c
parented0f868d501ee2bc31391210c214e9d07ae0874b (diff)
downloadu-boot-9d20db0483d54b507472fc33ee0c8a71d6c71c85.tar.gz
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>
Diffstat (limited to 'arch/x86/cpu/intel_common/itss.c')
-rw-r--r--arch/x86/cpu/intel_common/itss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/intel_common/itss.c b/arch/x86/cpu/intel_common/itss.c
index fe84ebe29f..53dd09d8f5 100644
--- a/arch/x86/cpu/intel_common/itss.c
+++ b/arch/x86/cpu/intel_common/itss.c
@@ -235,7 +235,7 @@ static const struct udevice_id itss_ids[] = {
{ }
};
-U_BOOT_DRIVER(itss_drv) = {
+U_BOOT_DRIVER(intel_itss) = {
.name = "intel_itss",
.id = UCLASS_IRQ,
.of_match = itss_ids,