diff options
author | Paul Burton <paul.burton@imgtec.com> | 2015-01-29 01:27:57 +0000 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2015-01-29 12:55:00 +0100 |
commit | 30374f98d14d5979f95a9d21d66346eaa9a795a1 (patch) | |
tree | 687a306b607d8d851f895cf95d6bd057149ecc49 /arch/mips/lib/Makefile | |
parent | 2b8bcc5a2fca54648ece966902b8230de971b609 (diff) | |
download | u-boot-imx-30374f98d14d5979f95a9d21d66346eaa9a795a1.zip u-boot-imx-30374f98d14d5979f95a9d21d66346eaa9a795a1.tar.gz u-boot-imx-30374f98d14d5979f95a9d21d66346eaa9a795a1.tar.bz2 |
MIPS: unify cache maintenance functions
Move the more developed mips32 version of the cache maintenance
functions to a common arch/mips/lib/cache.c, in order to reduce
duplication between mips32 & mips64.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'arch/mips/lib/Makefile')
-rw-r--r-- | arch/mips/lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/lib/Makefile b/arch/mips/lib/Makefile index 7f9b653..d939ee6 100644 --- a/arch/mips/lib/Makefile +++ b/arch/mips/lib/Makefile @@ -5,6 +5,7 @@ # SPDX-License-Identifier: GPL-2.0+ # +obj-y += cache.o obj-y += io.o obj-$(CONFIG_CMD_BOOTM) += bootm.o |