diff options
| author | Masahiro Yamada <[email protected]> | 2014-11-13 12:28:41 +0900 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2014-11-21 07:24:12 +0100 |
| commit | a5eb04db1a8fac8c7691c87cbbb890c8174ab906 (patch) | |
| tree | 5a1b515b75375912c51007c4caafcb76be8dd5af | |
| parent | 727c1a987147bb55ff41ab62f7e01293a38910b8 (diff) | |
x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory
The references of CONFIG_SYS_COREBOOT in arch/x86/cpu/coreboot/Makefile
are redundant because the build system descends into the directory
only when CONFIG_SYS_COREBOOT is defined.
Signed-off-by: Masahiro Yamada <[email protected]>
Cc: Simon Glass <[email protected]>
Acked-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/x86/cpu/coreboot/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/cpu/coreboot/Makefile b/arch/x86/cpu/coreboot/Makefile index cd0bf4ed316..35e6cdd7416 100644 --- a/arch/x86/cpu/coreboot/Makefile +++ b/arch/x86/cpu/coreboot/Makefile @@ -13,10 +13,10 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_SYS_COREBOOT) += car.o -obj-$(CONFIG_SYS_COREBOOT) += coreboot.o -obj-$(CONFIG_SYS_COREBOOT) += tables.o -obj-$(CONFIG_SYS_COREBOOT) += ipchecksum.o -obj-$(CONFIG_SYS_COREBOOT) += sdram.o -obj-$(CONFIG_SYS_COREBOOT) += timestamp.o +obj-y += car.o +obj-y += coreboot.o +obj-y += tables.o +obj-y += ipchecksum.o +obj-y += sdram.o +obj-y += timestamp.o obj-$(CONFIG_PCI) += pci.o |
