diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-08-31 04:56:50 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-31 05:01:31 -0400 |
commit | 874b83d396bb41886e70876afe783a0d81d79583 (patch) | |
tree | e6b028b05e3a5a22178c5e75761b4db0a557a687 | |
parent | 07f070dda48c3c5b0a81d6b48b4d7c7de7341b12 (diff) |
ALSA: asihpi: Put missing KERN_CONT prefix
The asihpi 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/pci/asihpi/hpidebug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/asihpi/hpidebug.c b/sound/pci/asihpi/hpidebug.c index ac86a1f1d3bf..9e122327dc05 100644 --- a/sound/pci/asihpi/hpidebug.c +++ b/sound/pci/asihpi/hpidebug.c | |||
@@ -71,8 +71,8 @@ void hpi_debug_data(u16 *pdata, u32 len) | |||
71 | printk(KERN_DEBUG "%p:", (pdata + i)); | 71 | printk(KERN_DEBUG "%p:", (pdata + i)); |
72 | 72 | ||
73 | for (k = 0; k < cols && i < len; i++, k++) | 73 | for (k = 0; k < cols && i < len; i++, k++) |
74 | printk("%s%04x", k == 0 ? "" : " ", pdata[i]); | 74 | printk(KERN_CONT "%s%04x", k == 0 ? "" : " ", pdata[i]); |
75 | 75 | ||
76 | printk("\n"); | 76 | printk(KERN_CONT "\n"); |
77 | } | 77 | } |
78 | } | 78 | } |