mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
ARM: 926ejs: use debug() for misaligned addresses
Misaligned warnings are useful to debug faulty drivers. A misaligned warning is printed also when the driver is correct - use debug() instead of printf(). Signed-off-by: Stefano Babic <sbabic@denx.de> CC: Albert Aribaud <albert.u.boot@aribaud.net> CC: Mike Frysinger <vapier@gentoo.org> CC: Marek Vasut <marex@denx.de> Acked-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
219872c8fe
commit
c8d9ceaf06
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ static int check_cache_range(unsigned long start, unsigned long stop)
|
|||
ok = 0;
|
||||
|
||||
if (!ok)
|
||||
printf("CACHE: Misaligned operation at range [%08lx, %08lx]\n",
|
||||
debug("CACHE: Misaligned operation at range [%08lx, %08lx]\n",
|
||||
start, stop);
|
||||
|
||||
return ok;
|
||||
|
|
Loading…
Add table
Reference in a new issue