diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-09-08 22:48:03 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-09-09 08:58:58 +0200 |
commit | e7e69265b6269763799a5de9c263fbbce32cd3a3 (patch) | |
tree | b32892ebf7c9e8efcde51230dd91d2bb7e526263 /sound/pci/au88x0/au88x0_eq.c | |
parent | 848f3a82df50fcc68a78c9d7d45e210b626b0283 (diff) | |
download | blackbird-op-linux-e7e69265b6269763799a5de9c263fbbce32cd3a3.tar.gz blackbird-op-linux-e7e69265b6269763799a5de9c263fbbce32cd3a3.zip |
sound: pci: au88x0: printk replacement
as pr_* macros are more preffered over printk, so printk replaced
with corresponding pr_* macros.
this patch will generate warning from checkpatch as it only did printk
replacement and didnot fixed other style issues.
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/au88x0/au88x0_eq.c')
-rw-r--r-- | sound/pci/au88x0/au88x0_eq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_eq.c b/sound/pci/au88x0/au88x0_eq.c index e7220533ecfc..9404ba73eaf6 100644 --- a/sound/pci/au88x0/au88x0_eq.c +++ b/sound/pci/au88x0/au88x0_eq.c @@ -845,7 +845,7 @@ snd_vortex_peaks_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *u vortex_Eqlzr_GetAllPeaks(vortex, peaks, &count); if (count != 20) { - printk(KERN_ERR "vortex: peak count error 20 != %d \n", count); + pr_err( "vortex: peak count error 20 != %d \n", count); return -1; } for (i = 0; i < 20; i++) |