diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-08-31 10:57:36 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-31 11:02:15 +0200 |
commit | c054c8a0c3a8a7e2ec2d6d5a628821f3cb832538 (patch) | |
tree | ba94446dd46059c127bc725feca0b610d9c51e87 /sound | |
parent | 10304d71cbe19ccb47c6ad524405c8d9587b646c (diff) |
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 <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/sh/sh_dac_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |