commit | f70f39f28d6d3655b9721c9aba5193f188267def | [log] [tgz] |
---|---|---|
author | Masahiro Yamada <yamada.masahiro@socionext.com> | Fri Sep 29 12:31:20 2017 +0900 |
committer | Tom Rini <trini@konsulko.com> | Wed Oct 04 12:00:21 2017 -0400 |
tree | c5c785627eb29ee46dc7657883b5c717778be849 | |
parent | edad892297af75568b21274b5a72015d3eea77e7 [diff] |
dm: replace dm_dbg() with pr_debug() As we discussed before in ML, dm_dbg() causes undefined reference error if #define DEBUG is added to users, but not drivers/core/util.c We do not need this macro because we can use pr_debug() instead, and it is pretty easy to enable it for the DM core by using ccflags-y. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>