ALSA: opl3: Put missing KERN_CONT prefix
authorTakashi Iwai <tiwai@suse.de>
Thu, 31 Aug 2017 08:53:35 +0000 (10:53 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 31 Aug 2017 09:01:03 +0000 (11:01 +0200)
The opl3 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/drivers/opl3/opl3_midi.c

index 7821b07415a785c70982e03803ac34601770e3a9..13c0a7e1bc2b050c2d0a3e98bd1d08cbe5bf7f1a 100644 (file)
@@ -131,8 +131,8 @@ static void debug_alloc(struct snd_opl3 *opl3, char *s, int voice) {
 
        printk(KERN_DEBUG "time %.5i: %s [%.2i]: ", opl3->use_time, s, voice);
        for (i = 0; i < opl3->max_voices; i++)
-               printk("%c", *(str + opl3->voices[i].state + 1));
-       printk("\n");
+               printk(KERN_CONT "%c", *(str + opl3->voices[i].state + 1));
+       printk(KERN_CONT "\n");
 }
 #endif