ALSA: usx2y: Put missing KERN_CONT prefix
authorTakashi Iwai <tiwai@suse.de>
Thu, 31 Aug 2017 09:00:20 +0000 (11:00 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 31 Aug 2017 09:02:14 +0000 (11:02 +0200)
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 <tiwai@suse.de>
sound/usb/usx2y/usb_stream.c

index bf618e1500acb3488193b90e6e7dc4469e22509d..fe926cb9192eccf738df97fe14de88d302313495 100644 (file)
@@ -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)