From: Simon Glass Date: Sat, 7 Dec 2019 04:41:52 +0000 (-0700) Subject: x86: Drop unnecessary interrupt code for TPL X-Git-Tag: v2020.04-rc1~39^2~2^2~83 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=76ab9f272610c7454f41e5fa059fe425c6b81292;p=oweals%2Fu-boot.git x86: Drop unnecessary interrupt code for TPL We don't expect an exception in TPL and don't need to set up interrupts in TPL. Drop this whole file. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/i386/Makefile b/arch/x86/cpu/i386/Makefile index 0c47252610..18e152074a 100644 --- a/arch/x86/cpu/i386/Makefile +++ b/arch/x86/cpu/i386/Makefile @@ -5,5 +5,7 @@ obj-y += call64.o obj-y += cpu.o +ifndef CONFIG_TPL_BUILD obj-y += interrupt.o +endif obj-y += setjmp.o