From: Simon Glass Date: Mon, 15 Mar 2021 04:25:45 +0000 (+1300) Subject: x86: apl: Fix the header order in pmc X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=8d0defa44b7faf2eee13a37b525a5c0802d40517;p=u-boot.git x86: apl: Fix the header order in pmc The dm.h header should come first. In fact it needs to, since otherwise the driver model definitions are not available to dt-structs.h Fix this, since it causes problems with OF_PLATDATA_INST. Signed-off-by: Simon Glass Signed-off-by: Simon Glass --- diff --git a/arch/x86/cpu/apollolake/pmc.c b/arch/x86/cpu/apollolake/pmc.c index e23d38ea07..1d21187c96 100644 --- a/arch/x86/cpu/apollolake/pmc.c +++ b/arch/x86/cpu/apollolake/pmc.c @@ -9,8 +9,8 @@ #define LOG_CATEGORY UCLASS_ACPI_PMC #include -#include #include +#include #include #include #include