From: Finn Thain Date: Wed, 12 Nov 2014 05:11:47 +0000 (+1100) Subject: ncr5380: Use printk() not pr_debug() X-Git-Tag: v3.19-rc1~176^2^2~93 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d61c5427f652dd89128f1d2b077aebece3c1a884;p=karo-tx-linux.git ncr5380: Use printk() not pr_debug() Having defined NDEBUG, and having set the console log level, I'd like to see some output. Don't use pr_debug(), it's annoying to have to define DEBUG as well. Signed-off-by: Finn Thain Reviewed-by: Hannes Reinecke Tested-by: Michael Schmitz Signed-off-by: Christoph Hellwig --- diff --git a/drivers/scsi/NCR5380.h b/drivers/scsi/NCR5380.h index c79ddfa6f53c..8b96b687885b 100644 --- a/drivers/scsi/NCR5380.h +++ b/drivers/scsi/NCR5380.h @@ -296,7 +296,8 @@ struct NCR5380_hostdata { #endif #define dprintk(flg, fmt, ...) \ - do { if ((NDEBUG) & (flg)) pr_debug(fmt, ## __VA_ARGS__); } while (0) + do { if ((NDEBUG) & (flg)) \ + printk(KERN_DEBUG fmt, ## __VA_ARGS__); } while (0) #if NDEBUG #define NCR5380_dprint(flg, arg) \