diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2020-07-09 09:59:57 +0300 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-07-09 10:14:29 +0300 |
commit | 769e0fe1171e95d90ea5a2d6d0b2bdc7d5d2e7b2 (patch) | |
tree | aae026c719e7d81d25b8bc0623db740ff92e88e5 /drivers/firmware | |
parent | f88814cc2578c121e6edef686365036db72af0ed (diff) | |
download | linux-769e0fe1171e95d90ea5a2d6d0b2bdc7d5d2e7b2.tar.xz |
efi: Revert "efi/x86: Fix build with gcc 4"
This reverts commit 5435f73d5c4a1b75, which is no longer needed now
that the minimum GCC version has been bumped to v4.9
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/efi/libstub/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/firmware/efi/libstub/Makefile b/drivers/firmware/efi/libstub/Makefile index 4cce372edaf4..75daaf20374e 100644 --- a/drivers/firmware/efi/libstub/Makefile +++ b/drivers/firmware/efi/libstub/Makefile @@ -6,8 +6,7 @@ # enabled, even if doing so doesn't break the build. # cflags-$(CONFIG_X86_32) := -march=i386 -cflags-$(CONFIG_X86_64) := -mcmodel=small \ - $(call cc-option,-maccumulate-outgoing-args) +cflags-$(CONFIG_X86_64) := -mcmodel=small cflags-$(CONFIG_X86) += -m$(BITS) -D__KERNEL__ \ -fPIC -fno-strict-aliasing -mno-red-zone \ -mno-mmx -mno-sse -fshort-wchar \ |