Skip to content

Commit

Permalink
ALSA: usx2y: Put missing KERN_CONT prefix
Browse files Browse the repository at this point in the history
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: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Aug 31, 2017
1 parent 5659f24 commit 10304d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/usb/usx2y/usb_stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,9 +625,9 @@ static void i_capture_start(struct urb *urb)
urb->iso_frame_desc[0].actual_length);
for (pack = 1; pack < urb->number_of_packets; ++pack) {
int l = urb->iso_frame_desc[pack].actual_length;
printk(" %i", l);
printk(KERN_CONT " %i", l);
}
printk("\n");
printk(KERN_CONT "\n");
}
#endif
if (!empty && s->state < usb_stream_sync1)
Expand Down

0 comments on commit 10304d7

Please sign in to comment.