From: Takashi Iwai Date: Thu, 31 Aug 2017 08:57:36 +0000 (+0200) Subject: ALSA: sh: Put missing KERN_* prefix X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c054c8a0c3a8a7e2ec2d6d5a628821f3cb832538;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ALSA: sh: Put missing KERN_* prefix sh audio driver prints its presence at probe function but a proper KERN_ prefix is missing. Put KERN_INFO there as it's merely an advertisement. Signed-off-by: Takashi Iwai --- diff --git a/sound/sh/sh_dac_audio.c b/sound/sh/sh_dac_audio.c index e71e6a718802..834b2574786f 100644 --- a/sound/sh/sh_dac_audio.c +++ b/sound/sh/sh_dac_audio.c @@ -424,7 +424,7 @@ static int snd_sh_dac_probe(struct platform_device *devptr) if (err < 0) goto probe_error; - snd_printk("ALSA driver for SuperH DAC audio"); + snd_printk(KERN_INFO "ALSA driver for SuperH DAC audio"); platform_set_drvdata(devptr, card); return 0;