Commit 29c3e8c8d16b74e91da9be445ff3e14136957753

Authored by Nicolas Kaiser
Committed by Wim Van Sebroeck
1 parent a422088db2

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/watchdog/machzwd.c
... ... @@ -143,7 +143,7 @@
143 143 #ifndef ZF_DEBUG
144 144 # define dprintk(format, args...)
145 145 #else
146   -# define dprintk(format, args...) printk(KERN_DEBUG PFX
  146 +# define dprintk(format, args...) printk(KERN_DEBUG PFX \
147 147 ":%s:%d: " format, __func__, __LINE__ , ## args)
148 148 #endif
149 149