summaryrefslogtreecommitdiff
path: root/sound/pci/ctxfi/cttimer.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-10-28 17:16:51 +0100
committerTakashi Iwai <tiwai@suse.de>2014-10-28 17:40:42 +0100
commit2e6705c09065ecb357140e44d12dc32274b1a723 (patch)
tree783391ec2eb8a5358330db76ce2d132f790e1972 /sound/pci/ctxfi/cttimer.c
parent859b2e374a86482004d1b8b94c1666269e1d7fd6 (diff)
ALSA: ctxfi: Kill the rest snd_print*()
Use the standard dev_*() instead. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/cttimer.c')
-rw-r--r--sound/pci/ctxfi/cttimer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ctxfi/cttimer.c b/sound/pci/ctxfi/cttimer.c
index 03fb909085af..a5d460453d7b 100644
--- a/sound/pci/ctxfi/cttimer.c
+++ b/sound/pci/ctxfi/cttimer.c
@@ -421,12 +421,12 @@ struct ct_timer *ct_timer_new(struct ct_atc *atc)
atimer->atc = atc;
hw = atc->hw;
if (!use_system_timer && hw->set_timer_irq) {
- snd_printd(KERN_INFO "ctxfi: Use xfi-native timer\n");
+ dev_info(atc->card->dev, "Use xfi-native timer\n");
atimer->ops = &ct_xfitimer_ops;
hw->irq_callback_data = atimer;
hw->irq_callback = ct_timer_interrupt;
} else {
- snd_printd(KERN_INFO "ctxfi: Use system timer\n");
+ dev_info(atc->card->dev, "Use system timer\n");
atimer->ops = &ct_systimer_ops;
}
return atimer;