diff options
author | Patrick Georgi <pgeorgi@google.com> | 2018-10-10 15:56:59 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-11 11:00:49 +0000 |
commit | ce1064edd6827112ee86728ac15f67daab656f54 (patch) | |
tree | 304b22261fe3dba97ee52b13488fd4942662852b /src/soc/nvidia | |
parent | 39363744cc76a793ab429c039ff5c75e56c3b368 (diff) |
tegra124_lp0: make sure to build with compiler.h included
Fixes builds of that binary in clean trees.
Change-Id: If5a995449a74c00da836fcf22bda44ebc8197518
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/28994
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/soc/nvidia')
-rw-r--r-- | src/soc/nvidia/tegra124/lp0/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/nvidia/tegra124/lp0/Makefile b/src/soc/nvidia/tegra124/lp0/Makefile index 8c3482dadb..66af1f55da 100644 --- a/src/soc/nvidia/tegra124/lp0/Makefile +++ b/src/soc/nvidia/tegra124/lp0/Makefile @@ -35,6 +35,7 @@ tegra_lp0_resume.elf: tegra_lp0_resume.ld tegra_lp0_resume.c $(CC) -marm -march=armv4t -mno-unaligned-access -nostdlib -static \ -Os -fpie -Wl,--build-id=none -ggdb3 -T tegra_lp0_resume.ld \ -I ../../../../include -I ../../../../arch/arm/include \ + -include ../../../../commonlib/include/commonlib/compiler.h \ -o $@ $(filter %.c,$+) tegra_lp0_resume.fw: tegra_lp0_resume.elf |