diff options
author | Robert Jarzmik <[email protected]> | 2011-11-19 16:02:43 +0100 |
---|---|---|
committer | David Woodhouse <[email protected]> | 2012-01-09 18:07:12 +0000 |
commit | ac48e800c077738f18d3789d5eb8958bf52cf2d7 (patch) | |
tree | 420adbe0873faac15aa888dcd066329e2a7324ca | |
parent | 12f049bd59676a672f529586b9b13c986c4bf40f (diff) |
mtd: docg3: fix debug log verbosity
Change the NOP debug log verbosity to very verbose to
unburden log analysis.
Signed-off-by: Robert Jarzmik <[email protected]>
Reviewed-by: Ivan Djelic <[email protected]>
Reviewed-by: Mike Dunn <[email protected]>
Signed-off-by: David Woodhouse <[email protected]>
-rw-r--r-- | drivers/mtd/devices/docg3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c index bdcf5df982e8..6f5233da3929 100644 --- a/drivers/mtd/devices/docg3.c +++ b/drivers/mtd/devices/docg3.c @@ -143,7 +143,7 @@ static void doc_delay(struct docg3 *docg3, int nbNOPs) { int i; - doc_dbg("NOP x %d\n", nbNOPs); + doc_vdbg("NOP x %d\n", nbNOPs); for (i = 0; i < nbNOPs; i++) doc_writeb(docg3, 0, DOC_NOP); } |