Commit 10304d71 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: usx2y: Put missing KERN_CONT prefix

The usx2y 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 5659f244
...@@ -625,9 +625,9 @@ static void i_capture_start(struct urb *urb) ...@@ -625,9 +625,9 @@ static void i_capture_start(struct urb *urb)
urb->iso_frame_desc[0].actual_length); urb->iso_frame_desc[0].actual_length);
for (pack = 1; pack < urb->number_of_packets; ++pack) { for (pack = 1; pack < urb->number_of_packets; ++pack) {
int l = urb->iso_frame_desc[pack].actual_length; int l = urb->iso_frame_desc[pack].actual_length;
printk(" %i", l); printk(KERN_CONT " %i", l);
} }
printk("\n"); printk(KERN_CONT "\n");
} }
#endif #endif
if (!empty && s->state < usb_stream_sync1) if (!empty && s->state < usb_stream_sync1)
......
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