From bcc53bf095893fbdae531a9a7b5d4ef4a125a7fc Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 19 Jun 2016 19:43:05 -0600 Subject: arm: Show cache warnings in U-Boot proper only Avoid bloating the SPL image size. Signed-off-by: Simon Glass --- arch/arm/lib/cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch') diff --git a/arch/arm/lib/cache.c b/arch/arm/lib/cache.c index 642a952..d330b09 100644 --- a/arch/arm/lib/cache.c +++ b/arch/arm/lib/cache.c @@ -61,8 +61,8 @@ int check_cache_range(unsigned long start, unsigned long stop) ok = 0; if (!ok) { - debug("CACHE: Misaligned operation at range [%08lx, %08lx]\n", - start, stop); + warn_non_spl("CACHE: Misaligned operation at range [%08lx, %08lx]\n", + start, stop); } return ok; -- cgit v1.1