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

Commit 0aafe75d authored by Peter Schlaile's avatar Peter Schlaile Committed by Karsten Keil
Browse files

mISDN: Make debug output a little bit more verbose



Add usefull info to debug output.

Signed-off-by: default avatarPeter Schlaile <root@asterisk.schlaile.de>
Signed-off-by: default avatarKarsten Keil <kkeil@suse.de>
parent e4cce225
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1823,7 +1823,9 @@ dsp_cmx_transmit(struct dsp *dsp, struct sk_buff *skb)
		/* write to the space we have left */
		ww = (ww - 1) & CMX_BUFF_MASK; /* end one byte prior tx_R */
		if (dsp_debug & DEBUG_DSP_CLOCK)
			printk(KERN_DEBUG "%s: TX overflow\n", __func__);
			printk(KERN_DEBUG "%s: TX overflow space=%d skb->len="
			    "%d, w=0x%04x, ww=0x%04x\n", __func__, space,
			    skb->len, w, ww);
	} else
		/* write until all byte are copied */
		ww = (w + skb->len) & CMX_BUFF_MASK;