mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 12:11:59 +00:00
a9814c5d2d
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>
10 lines
241 B
Makefile
10 lines
241 B
Makefile
#
|
|
# Makefile for the Linux ufs filesystem routines.
|
|
#
|
|
|
|
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
|