ALSA: vx: Put missing KERN_CONT prefix
authorTakashi Iwai <tiwai@suse.de>
Thu, 31 Aug 2017 08:56:12 +0000 (10:56 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 31 Aug 2017 09:01:17 +0000 (11:01 +0200)
The vx 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/vx/vx_core.c

index f684fffd1397552096fda2f74c45a97e173469d7..121357397a6d5388c00639514df1b64b7ebe9f18 100644 (file)
@@ -256,8 +256,8 @@ int vx_send_msg_nolock(struct vx_core *chip, struct vx_rmh *rmh)
        if (rmh->LgCmd > 1) {
                printk(KERN_DEBUG "  ");
                for (i = 1; i < rmh->LgCmd; i++)
-                       printk("0x%06x ", rmh->Cmd[i]);
-               printk("\n");
+                       printk(KERN_CONT "0x%06x ", rmh->Cmd[i]);
+               printk(KERN_CONT "\n");
        }
 #endif
        /* Check bit M is set according to length of the command */