summaryrefslogtreecommitdiff
path: root/drivers/dahdi/voicebus.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@digium.com>2008-08-03 16:47:46 +0000
committerRussell Bryant <russell@digium.com>2008-08-03 16:47:46 +0000
commitad59317fbfddd1d6624e8128f556d85e7e17d935 (patch)
treed76f5176789981ba3f8ee905a4ba8ae926ff6b95 /drivers/dahdi/voicebus.c
parent53bb164eda38b8591a88146fbf81652041eeb9b1 (diff)
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
Diffstat (limited to 'drivers/dahdi/voicebus.c')
-rw-r--r--drivers/dahdi/voicebus.c8
1 files changed, 4 insertions, 4 deletions
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