diff options
author | Eran Matityahu <eran.m@variscite.com> | 2019-02-13 20:56:17 +0200 |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2019-04-09 07:46:42 +0200 |
commit | 734b080e78805edbb3430a52c8c5b1aeee02bd9f (patch) | |
tree | 1203db3eefbfa8b841972db0315d6e08f0cea209 /drivers/mtd/ubi | |
parent | 66e78fc196f59a9cd2688effa4d4d2eea32b0ed5 (diff) | |
download | u-boot-734b080e78805edbb3430a52c8c5b1aeee02bd9f.tar.gz |
mtd: ubi, ubifs debug: Use pr_debug instead of pr_crit
Before printk.h was introduced and MTDDEBUG was removed,
pr_crit() was calling MTDDEBUG(), which was since then
replaced by the current pr_debug().
pr_debug is more appropriate here.
Signed-off-by: Eran Matityahu <eran.m@variscite.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/mtd/ubi')
-rw-r--r-- | drivers/mtd/ubi/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/debug.h b/drivers/mtd/ubi/debug.h index d853520108..2c2faaf1b4 100644 --- a/drivers/mtd/ubi/debug.h +++ b/drivers/mtd/ubi/debug.h @@ -29,7 +29,7 @@ void ubi_dump_vid_hdr(const struct ubi_vid_hdr *vid_hdr); #else #define ubi_assert(expr) do { \ if (unlikely(!(expr))) { \ - pr_crit("UBI assert failed in %s at %u\n", \ + pr_debug("UBI assert failed in %s at %u\n", \ __func__, __LINE__); \ dump_stack(); \ } \ |