diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-08-31 10:56:12 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-31 11:01:17 +0200 |
commit | 07f070dda48c3c5b0a81d6b48b4d7c7de7341b12 (patch) | |
tree | 1d8efd685aab5ecd0b2973a2132fd08b5ed5964d | |
parent | 53cfa99e37010c9d270dc9f16054928d4e0716e6 (diff) |
ALSA: vx: Put missing KERN_CONT prefix
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>
-rw-r--r-- | sound/drivers/vx/vx_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/drivers/vx/vx_core.c b/sound/drivers/vx/vx_core.c index f684fffd1397..121357397a6d 100644 --- a/sound/drivers/vx/vx_core.c +++ b/sound/drivers/vx/vx_core.c @@ -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 */ |