summaryrefslogtreecommitdiff
path: root/src/target/mips_m4k.c
diff options
context:
space:
mode:
authorSpencer Oliver <ntfreak@users.sourceforge.net>2010-01-07 22:39:35 +0000
committerSpencer Oliver <ntfreak@users.sourceforge.net>2010-01-07 22:39:35 +0000
commit991d030fcc9be971f29498ea7e1b3afbed05815b (patch)
tree7e7f85b22fb5f5c143905eb2e043a7cf42f562ae /src/target/mips_m4k.c
parentc68c2751f309103cc7116464e6c3242d54c1007b (diff)
downloadopenocd+libswd-991d030fcc9be971f29498ea7e1b3afbed05815b.tar.gz
openocd+libswd-991d030fcc9be971f29498ea7e1b3afbed05815b.tar.bz2
openocd+libswd-991d030fcc9be971f29498ea7e1b3afbed05815b.tar.xz
openocd+libswd-991d030fcc9be971f29498ea7e1b3afbed05815b.zip
MIPS: change bulk_write_memory fallback msg to LOG_DEBUG
Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
Diffstat (limited to 'src/target/mips_m4k.c')
-rw-r--r--src/target/mips_m4k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips_m4k.c b/src/target/mips_m4k.c
index 312fc09c..f229690b 100644
--- a/src/target/mips_m4k.c
+++ b/src/target/mips_m4k.c
@@ -1004,7 +1004,7 @@ int mips_m4k_bulk_write_memory(struct target *target, uint32_t address, uint32_t
if (retval != ERROR_OK)
{
/* FASTDATA access failed, try normal memory write */
- LOG_WARNING("Fastdata access Failed, falling back to non-bulk write");
+ LOG_DEBUG("Fastdata access Failed, falling back to non-bulk write");
retval = mips_m4k_write_memory(target, address, 4, count, buffer);
}