From: Takashi Iwai Date: Wed, 7 Aug 2024 13:34:22 +0000 (+0200) Subject: ALSA: pcm: oss: Use pr_debug() X-Git-Tag: v6.12-rc1~169^2~96 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=55c531bd81a66e1c3a0dd35e8ec07237ba9dce49;p=linux-block.git ALSA: pcm: oss: Use pr_debug() Use the standard print API instead of open-coded printk(). Reviewed-by: Jaroslav Kysela Signed-off-by: Takashi Iwai Link: https://patch.msgid.link/20240807133452.9424-33-tiwai@suse.de --- diff --git a/sound/core/oss/pcm_plugin.h b/sound/core/oss/pcm_plugin.h index 50a6b50f5db4..55035dbf23f0 100644 --- a/sound/core/oss/pcm_plugin.h +++ b/sound/core/oss/pcm_plugin.h @@ -160,7 +160,7 @@ snd_pcm_sframes_t snd_pcm_oss_readv3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_uframes_t frames); #ifdef PLUGIN_DEBUG -#define pdprintf(fmt, args...) printk(KERN_DEBUG "plugin: " fmt, ##args) +#define pdprintf(fmt, args...) pr_debug("plugin: " fmt, ##args) #else #define pdprintf(fmt, args...) #endif