diff options
author | Tom Rini <trini@konsulko.com> | 2017-12-21 22:13:22 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-10 08:05:52 -0500 |
commit | ec75fab302a8b2ddf291cc1b7219b0333cea1a4d (patch) | |
tree | e1e18c826f5c564d10674cc83b0919e465a3b5ce /board/samsung | |
parent | 2c33b0c7d8deca7e9a907365a59fcbcde531c70d (diff) | |
download | u-boot-ec75fab302a8b2ddf291cc1b7219b0333cea1a4d.tar.gz u-boot-ec75fab302a8b2ddf291cc1b7219b0333cea1a4d.tar.bz2 u-boot-ec75fab302a8b2ddf291cc1b7219b0333cea1a4d.zip |
build: Drop CONFIG_SPL_BUILD guards in some cases
Given gcc-6.1 and later we can now safely have strings discarded when
the functions are unused. This lets us drop certain cases of not
building something so that we don't have the strings brought in when the
code was discarded. Simplify the code now by dropping guards we don't
need now.
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Chander Kashyap <k.chander@samsung.com>
Cc: Thomas Abraham <thomas.ab@samsung.com>
Cc: Vipin Kumar <vipin.kumar@st.com>
Cc: Wenyou Yang <wenyou.yang@microchip.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/samsung')
-rw-r--r-- | board/samsung/arndale/Makefile | 3 | ||||
-rw-r--r-- | board/samsung/espresso7420/Makefile | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/board/samsung/arndale/Makefile b/board/samsung/arndale/Makefile index be2b3662ad..01bbc0798a 100644 --- a/board/samsung/arndale/Makefile +++ b/board/samsung/arndale/Makefile @@ -5,7 +5,4 @@ # obj-y += arndale_spl.o - -ifndef CONFIG_SPL_BUILD obj-y += arndale.o -endif diff --git a/board/samsung/espresso7420/Makefile b/board/samsung/espresso7420/Makefile index d514dc2a45..5248265b1f 100644 --- a/board/samsung/espresso7420/Makefile +++ b/board/samsung/espresso7420/Makefile @@ -5,6 +5,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -ifndef CONFIG_SPL_BUILD obj-y += espresso7420.o -endif |