diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-11-03 16:04:13 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-11-03 14:07:25 +0100 |
commit | b5b4a41b392960010fccf1f9ccf8334d612bd450 (patch) | |
tree | a017259a4e81f8c211d28bd66469bded68d31819 /sound/pci/echoaudio/indigoiox_dsp.c | |
parent | e369086968157415aeb11af3b57cd998c6721603 (diff) | |
download | linux-b5b4a41b392960010fccf1f9ccf8334d612bd450.tar.bz2 |
ALSA: echoaudio: remove all snd_printk
removed all references of snd_printk with the standard dev_* macro.
[a few places degraded to dev_dbg(), too -- tiwai]
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/echoaudio/indigoiox_dsp.c')
-rw-r--r-- | sound/pci/echoaudio/indigoiox_dsp.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sound/pci/echoaudio/indigoiox_dsp.c b/sound/pci/echoaudio/indigoiox_dsp.c index 394c6e76bcbc..90cdd271d9fc 100644 --- a/sound/pci/echoaudio/indigoiox_dsp.c +++ b/sound/pci/echoaudio/indigoiox_dsp.c @@ -35,13 +35,14 @@ static int init_hw(struct echoaudio *chip, u16 device_id, u16 subdevice_id) { int err; - DE_INIT(("init_hw() - Indigo IOx\n")); + dev_dbg(chip->card->dev, "init_hw() - Indigo IOx\n"); if (snd_BUG_ON((subdevice_id & 0xfff0) != INDIGO_IOX)) return -ENODEV; err = init_dsp_comm_page(chip); if (err < 0) { - DE_INIT(("init_hw - could not initialize DSP comm page\n")); + dev_err(chip->card->dev, + "init_hw - could not initialize DSP comm page\n"); return err; } @@ -59,7 +60,7 @@ static int init_hw(struct echoaudio *chip, u16 device_id, u16 subdevice_id) return err; chip->bad_board = FALSE; - DE_INIT(("init_hw done\n")); + dev_dbg(chip->card->dev, "init_hw done\n"); return err; } |