diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-08-08 14:20:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 15:57:21 -0700 |
commit | a9814c5d2dae4b6a3052321a6cb8f2dcc0b3e30b (patch) | |
tree | 31fd6dc45391701bb0148aadaf3bad03034245de /fs/ufs/Makefile | |
parent | dd70edbde2627f47df118d899de6bbb55abcfdbf (diff) | |
download | linux-a9814c5d2dae4b6a3052321a6cb8f2dcc0b3e30b.tar.bz2 |
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 ufs-objs := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \ namei.o super.o symlink.o truncate.o util.o +ccflags-$(CONFIG_UFS_DEBUG) += -DDEBUG |