diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-08-08 17:20:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 18:57:21 -0400 |
commit | a9814c5d2dae4b6a3052321a6cb8f2dcc0b3e30b (patch) | |
tree | 31fd6dc45391701bb0148aadaf3bad03034245de /fs/ufs/Makefile | |
parent | dd70edbde2627f47df118d899de6bbb55abcfdbf (diff) |
fs/ufs: convert printk to pr_foo()
Use current logging functions.
- no level printk under CONFIG_UFS_DEBUG converted to pr_debug
- no level printk elsewhere converted to pr_err
- add DDEBUG flag in Makefile
- coalesce formats
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ufs/Makefile')
-rw-r--r-- | fs/ufs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ufs/Makefile b/fs/ufs/Makefile index dd39980437fc..4d0e02b022b3 100644 --- a/fs/ufs/Makefile +++ b/fs/ufs/Makefile | |||
@@ -6,3 +6,4 @@ obj-$(CONFIG_UFS_FS) += ufs.o | |||
6 | 6 | ||
7 | ufs-objs := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \ | 7 | ufs-objs := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \ |
8 | namei.o super.o symlink.o truncate.o util.o | 8 | namei.o super.o symlink.o truncate.o util.o |
9 | ccflags-$(CONFIG_UFS_DEBUG) += -DDEBUG | ||