diff options
author | Pali Rohár <pali@kernel.org> | 2021-01-27 16:29:13 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-01 16:32:06 -0500 |
commit | e18bf3943b081507f5040afd5c1866f2e87f0da5 (patch) | |
tree | 9f7cd52f4d185d8c0331e46d655c6c4e6114d9be /arch | |
parent | 2b139b3992f0a95bfc6631397574c59f44e3b7c6 (diff) | |
download | u-boot-e18bf3943b081507f5040afd5c1866f2e87f0da5.tar.gz |
arm: Remove #include <version.h> from armv8/fwcall.c
No version information is used in armv8/fwcall.c therefore do not include
version.h header file. This change prevents recompiling fwcall.o when
SOURCE_DATE_EPOCH changes.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv8/fwcall.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv8/fwcall.c b/arch/arm/cpu/armv8/fwcall.c index b29bc30fc2..16914dc1ee 100644 --- a/arch/arm/cpu/armv8/fwcall.c +++ b/arch/arm/cpu/armv8/fwcall.c @@ -7,7 +7,6 @@ #include <asm-offsets.h> #include <config.h> -#include <version.h> #include <asm/cache.h> #include <asm/macro.h> #include <asm/psci.h> |