diff options
author | Nicolas Kaiser <nikai@nikai.net> | 2010-10-09 08:19:46 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2010-10-28 17:42:59 -0400 |
commit | 29c3e8c8d16b74e91da9be445ff3e14136957753 (patch) | |
tree | 0121019d716805b7d48c92bb0b758e6bd3eebbf0 | |
parent | a422088db21333ba02a0f4fe4f5abfb08c802d35 (diff) |
watchdog: MachZ: fix debug macro
Fix debug macro line wrapping.
Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
-rw-r--r-- | drivers/watchdog/machzwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c index edffe68e3d2f..928035069396 100644 --- a/drivers/watchdog/machzwd.c +++ b/drivers/watchdog/machzwd.c | |||
@@ -143,7 +143,7 @@ static unsigned long next_heartbeat; | |||
143 | #ifndef ZF_DEBUG | 143 | #ifndef ZF_DEBUG |
144 | # define dprintk(format, args...) | 144 | # define dprintk(format, args...) |
145 | #else | 145 | #else |
146 | # define dprintk(format, args...) printk(KERN_DEBUG PFX | 146 | # define dprintk(format, args...) printk(KERN_DEBUG PFX \ |
147 | ":%s:%d: " format, __func__, __LINE__ , ## args) | 147 | ":%s:%d: " format, __func__, __LINE__ , ## args) |
148 | #endif | 148 | #endif |
149 | 149 | ||