Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29c3e8c8 authored by Nicolas Kaiser's avatar Nicolas Kaiser Committed by Wim Van Sebroeck
Browse files

watchdog: MachZ: fix debug macro



Fix debug macro line wrapping.

Signed-off-by: default avatarNicolas Kaiser <nikai@nikai.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent a422088d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -143,7 +143,7 @@ static unsigned long next_heartbeat;
#ifndef ZF_DEBUG
#ifndef ZF_DEBUG
#	define dprintk(format, args...)
#	define dprintk(format, args...)
#else
#else
#	define dprintk(format, args...) printk(KERN_DEBUG PFX
#	define dprintk(format, args...) printk(KERN_DEBUG PFX \
				":%s:%d: " format, __func__, __LINE__ , ## args)
				":%s:%d: " format, __func__, __LINE__ , ## args)
#endif
#endif