mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
fa5a7a41a6
Add DDEBUG in Makefile when CONFIG_QNX6FS_DEBUG is set. All QNX6DEBUG messages are replaced by pr_debug which means debugging will be emitted in debug level only and no more in error and info levels. debug uses now pr_fmt and __func__ QNX6DEBUG definition has been removed. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Joe Perches <joe@perches.com> Cc: Kai Bankett <chaosman@ontika.net> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
8 lines
180 B
Makefile
8 lines
180 B
Makefile
#
|
|
# Makefile for the linux qnx4-filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_QNX6FS_FS) += qnx6.o
|
|
|
|
qnx6-objs := inode.o dir.o namei.o super_mmi.o
|
|
ccflags-$(CONFIG_QNX6FS_DEBUG) += -DDEBUG
|