summaryrefslogtreecommitdiffstats
path: root/sound/drivers
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2017-08-31 04:53:35 -0400
committerTakashi Iwai <tiwai@suse.de>2017-08-31 05:01:03 -0400
commit53cfa99e37010c9d270dc9f16054928d4e0716e6 (patch)
treeeb22624c135d3005dc82ded0bed3be7de8011164 /sound/drivers
parent67616feda99e32cb676b0907284bbb6957e45480 (diff)
ALSA: opl3: Put missing KERN_CONT prefix
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>
Diffstat (limited to 'sound/drivers')
-rw-r--r--sound/drivers/opl3/opl3_midi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/drivers/opl3/opl3_midi.c b/sound/drivers/opl3/opl3_midi.c
index 7821b07415a7..13c0a7e1bc2b 100644
--- a/sound/drivers/opl3/opl3_midi.c
+++ b/sound/drivers/opl3/opl3_midi.c
@@ -131,8 +131,8 @@ static void debug_alloc(struct snd_opl3 *opl3, char *s, int voice) {
131 131
132 printk(KERN_DEBUG "time %.5i: %s [%.2i]: ", opl3->use_time, s, voice); 132 printk(KERN_DEBUG "time %.5i: %s [%.2i]: ", opl3->use_time, s, voice);
133 for (i = 0; i < opl3->max_voices; i++) 133 for (i = 0; i < opl3->max_voices; i++)
134 printk("%c", *(str + opl3->voices[i].state + 1)); 134 printk(KERN_CONT "%c", *(str + opl3->voices[i].state + 1));
135 printk("\n"); 135 printk(KERN_CONT "\n");
136} 136}
137#endif 137#endif
138 138