summaryrefslogtreecommitdiff
path: root/drivers/dahdi/xpp/xproto.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-08-03 18:06:15 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-08-03 18:06:15 +0000
commitbc7451c076f9e6efa19ed362de942e52eaf2bb05 (patch)
treeb59bff5c7fa87604a02566993c0915fd6f04f2f7 /drivers/dahdi/xpp/xproto.c
parent92899e764d125c3259161ad91fa9e6f3d5ae1132 (diff)
Do use printk-s without a priority when continuing previous printk.
Also remove a small duplication in dahdi-base.c, as I'm too lazy to fix in two separate places. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4688 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/xpp/xproto.c')
-rw-r--r--drivers/dahdi/xpp/xproto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dahdi/xpp/xproto.c b/drivers/dahdi/xpp/xproto.c
index b0d5768..72686e3 100644
--- a/drivers/dahdi/xpp/xproto.c
+++ b/drivers/dahdi/xpp/xproto.c
@@ -309,7 +309,7 @@ void dump_packet(const char *msg, const xpacket_t *packet, bool debug)
int i;
byte *p = (byte *)packet;
- printk(KERN_DEBUG " BYTES: ");
+ printk(" BYTES: ");
for(i = 0; i < XPACKET_LEN(packet); i++) {
static int limiter = 0;
@@ -325,11 +325,11 @@ void dump_packet(const char *msg, const xpacket_t *packet, bool debug)
break;
}
if (debug)
- printk(KERN_DEBUG "%02X ", p[i]);
+ printk("%02X ", p[i]);
}
}
#endif
- printk(KERN_DEBUG "\n");
+ printk("\n");
}
void dump_reg_cmd(const char msg[], bool writing, xbus_t *xbus,