From ad59317fbfddd1d6624e8128f556d85e7e17d935 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 3 Aug 2008 16:47:46 +0000 Subject: Change all instances of printk in DAHDI to include a priority (closes issue #11504) Reported by: tzafrir Patches: 20080717__issue11504_dahdi_printk_without_priority.diff uploaded by bbryant (license 36) git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4685 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/voicebus.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'drivers/dahdi/voicebus.c') diff --git a/drivers/dahdi/voicebus.c b/drivers/dahdi/voicebus.c index 40494e5..ee6f057 100644 --- a/drivers/dahdi/voicebus.c +++ b/drivers/dahdi/voicebus.c @@ -681,14 +681,14 @@ show_buffer(struct voicebus *vb, void *vbb) int x; unsigned char *c; c = vbb; - printk("Packet %d\n", count); + printk(KERN_DEBUG "Packet %d\n", count); for (x = 1; x <= vb->framesize; ++x) { - printk("%02x ", c[x]); + printk(KERN_DEBUG "%02x ", c[x]); if (x % 16 == 0) { - printk("\n"); + printk(KERN_DEBUG "\n"); } } - printk("\n\n"); + printk(KERN_DEBUG "\n\n"); } #endif -- cgit v1.2.3