projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07f070d
)
ALSA: asihpi: Put missing KERN_CONT prefix
author
Takashi Iwai
<tiwai@suse.de>
Thu, 31 Aug 2017 08:56:50 +0000
(10:56 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Thu, 31 Aug 2017 09:01:31 +0000
(11:01 +0200)
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>
sound/pci/asihpi/hpidebug.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/pci/asihpi/hpidebug.c
b/sound/pci/asihpi/hpidebug.c
index ac86a1f1d3bfba36d33adb52ef6349421aa16329..9e122327dc051fb2093c69dff6f7ee11d674ab67 100644
(file)
--- a/
sound/pci/asihpi/hpidebug.c
+++ b/
sound/pci/asihpi/hpidebug.c
@@
-71,8
+71,8
@@
void hpi_debug_data(u16 *pdata, u32 len)
printk(KERN_DEBUG "%p:", (pdata + i));
for (k = 0; k < cols && i < len; i++, k++)
- printk("%s%04x", k == 0 ? "" : " ", pdata[i]);
+ printk(
KERN_CONT
"%s%04x", k == 0 ? "" : " ", pdata[i]);
- printk("\n");
+ printk(
KERN_CONT
"\n");
}
}