diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-10-13 11:37:19 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-10-15 12:03:18 +0200 |
commit | 70c84418bf74f582e29906f1eeb19f2e9da53ddd (patch) | |
tree | e3d1048cea4059ef56a84fba7fdf7e06db50e037 /sound/pci/au88x0/au88x0_mpu401.c | |
parent | 6a40dc5ab5036722d8102ba7190dbd9d72982637 (diff) | |
download | lwn-70c84418bf74f582e29906f1eeb19f2e9da53ddd.tar.gz lwn-70c84418bf74f582e29906f1eeb19f2e9da53ddd.zip |
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_mpu401.c')
-rw-r--r-- | sound/pci/au88x0/au88x0_mpu401.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_mpu401.c b/sound/pci/au88x0/au88x0_mpu401.c index 328c1943c0c3..1025e55ca854 100644 --- a/sound/pci/au88x0/au88x0_mpu401.c +++ b/sound/pci/au88x0/au88x0_mpu401.c @@ -73,7 +73,7 @@ static int snd_vortex_midi(vortex_t *vortex) /* Check if anything is OK. */ temp = hwread(vortex->mmio, VORTEX_MIDI_DATA); if (temp != MPU401_ACK /*0xfe */ ) { - pr_err( "midi port doesn't acknowledge!\n"); + dev_err(vortex->card->dev, "midi port doesn't acknowledge!\n"); return -ENODEV; } /* Enable MPU401 interrupts. */ |