Commit 5659f244 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: usb-audio: Put missing KERN_CONT prefix

The usb-audio driver has a debug printk code without proper KERN_
prefix.  On recent kernels, KERN_CONT prefix is mandatory for
continued output lines.  Put it properly.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 874b83d3
......@@ -242,8 +242,8 @@ static void dump_urb(const char *type, const u8 *data, int length)
{
snd_printk(KERN_DEBUG "%s packet: [", type);
for (; length > 0; ++data, --length)
printk(" %02x", *data);
printk(" ]\n");
printk(KERN_CONT " %02x", *data);
printk(KERN_CONT " ]\n");
}
#else
#define dump_urb(type, data, length) /* nothing */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment