projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9828682
)
arm: Show cache warnings in U-Boot proper only
author
Simon Glass
<sjg@chromium.org>
Mon, 20 Jun 2016 01:43:05 +0000
(19:43 -0600)
committer
Tom Rini
<trini@konsulko.com>
Thu, 14 Jul 2016 22:33:11 +0000
(18:33 -0400)
Avoid bloating the SPL image size.
Signed-off-by: Simon Glass <sjg@chromium.org>
arch/arm/lib/cache.c
patch
|
blob
|
history
diff --git
a/arch/arm/lib/cache.c
b/arch/arm/lib/cache.c
index 642a95242b364cc5016a4e2ac3e893f6b35d6187..d330b09434a46df1ab6505bf8b46c54e90ccfa21 100644
(file)
--- 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;