diff options
author | Simon Glass <sjg@chromium.org> | 2021-03-15 17:25:46 +1300 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-03-26 17:03:09 +1300 |
commit | a65c35ed7784d782e6aecb6c85c84e77a08474b7 (patch) | |
tree | feb422fb93cb8e9e10010170685fb60bc2591c5b | |
parent | 8d0defa44b7faf2eee13a37b525a5c0802d40517 (diff) | |
download | u-boot-a65c35ed7784d782e6aecb6c85c84e77a08474b7.tar.gz u-boot-a65c35ed7784d782e6aecb6c85c84e77a08474b7.tar.bz2 u-boot-a65c35ed7784d782e6aecb6c85c84e77a08474b7.zip |
x86: apl: Tell of-platdata about a required header file
This enum is needed to generate build-time devices. Tell dtoc where to
find the header, to avoid compile errors in the generated code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/x86/cpu/apollolake/punit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/cpu/apollolake/punit.c b/arch/x86/cpu/apollolake/punit.c index e67c011e22..5ed7963579 100644 --- a/arch/x86/cpu/apollolake/punit.c +++ b/arch/x86/cpu/apollolake/punit.c @@ -93,4 +93,5 @@ U_BOOT_DRIVER(intel_apl_punit) = { .id = UCLASS_SYSCON, .of_match = apl_syscon_ids, .probe = apl_punit_probe, + DM_HEADER(<asm/cpu.h>) /* for X86_SYSCON_PUNIT */ }; |