diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-10-11 21:37:36 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-10-21 07:46:26 -0600 |
commit | f6220f1a86109f88950fd42e3af54314de24365a (patch) | |
tree | 4749256576c9bb19a1f71ecc0ca1b09bbe07a854 /arch/x86/lib/Makefile | |
parent | e2d76e95d3f048a171ccd65ea0bd954ccc2b15e0 (diff) | |
download | u-boot-imx-f6220f1a86109f88950fd42e3af54314de24365a.zip u-boot-imx-f6220f1a86109f88950fd42e3af54314de24365a.tar.gz u-boot-imx-f6220f1a86109f88950fd42e3af54314de24365a.tar.bz2 |
x86: Move mrccache.[c|h] to a common place
mrccache implementation can be common for all boards. Move it
from ivybridge cpu directory to the common lib directory.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib/Makefile')
-rw-r--r-- | arch/x86/lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index fa95944..2f82a21 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -17,6 +17,7 @@ obj-y += init_helpers.o obj-y += interrupts.o obj-y += lpc-uclass.o obj-y += mpspec.o +obj-$(CONFIG_ENABLE_MRC_CACHE) += mrccache.o obj-y += cmd_mtrr.o obj-$(CONFIG_SYS_PCAT_INTERRUPTS) += pcat_interrupts.o obj-$(CONFIG_SYS_PCAT_TIMER) += pcat_timer.o |