Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 874b83d3 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

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: default avatarTakashi Iwai <tiwai@suse.de>
parent 07f070dd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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");
	}
}