diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-10-13 10:07:19 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-10-15 14:03:18 +0400 |
commit | 70c84418bf74f582e29906f1eeb19f2e9da53ddd (patch) | |
tree | e3d1048cea4059ef56a84fba7fdf7e06db50e037 /sound/pci/au88x0/au88x0_eq.c | |
parent | 6a40dc5ab5036722d8102ba7190dbd9d72982637 (diff) | |
download | linux-70c84418bf74f582e29906f1eeb19f2e9da53ddd.tar.xz |
ALSA: au88x0: pr_* replaced with dev_*
pr_* macros replaced with dev_* as they are more preffered over pr_*.
each file which had pr_* was reviewed manually and replaced with dev_*.
here we have actually used the reference of the vortex which was added
to some functions in the previous patch of this series.
The prefix of the CARD_NAME and prefix of "vortex:" was also
removed as the dev_* will print the device name.
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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_eq.c b/sound/pci/au88x0/au88x0_eq.c index 9404ba73eaf6..9585c5c63b96 100644 --- a/sound/pci/au88x0/au88x0_eq.c +++ b/sound/pci/au88x0/au88x0_eq.c @@ -845,7 +845,8 @@ snd_vortex_peaks_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *u vortex_Eqlzr_GetAllPeaks(vortex, peaks, &count); if (count != 20) { - pr_err( "vortex: peak count error 20 != %d \n", count); + dev_err(vortex->card->dev, + "peak count error 20 != %d\n", count); return -1; } for (i = 0; i < 20; i++) |