ALSA: rme32: Use standard printk helpers
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
747ce5b36c
commit
03952a3e2d
|
@ -1349,14 +1349,15 @@ static int snd_rme32_create(struct rme32 *rme32)
|
||||||
|
|
||||||
rme32->iobase = ioremap_nocache(rme32->port, RME32_IO_SIZE);
|
rme32->iobase = ioremap_nocache(rme32->port, RME32_IO_SIZE);
|
||||||
if (!rme32->iobase) {
|
if (!rme32->iobase) {
|
||||||
snd_printk(KERN_ERR "unable to remap memory region 0x%lx-0x%lx\n",
|
dev_err(rme32->card->dev,
|
||||||
|
"unable to remap memory region 0x%lx-0x%lx\n",
|
||||||
rme32->port, rme32->port + RME32_IO_SIZE - 1);
|
rme32->port, rme32->port + RME32_IO_SIZE - 1);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (request_irq(pci->irq, snd_rme32_interrupt, IRQF_SHARED,
|
if (request_irq(pci->irq, snd_rme32_interrupt, IRQF_SHARED,
|
||||||
KBUILD_MODNAME, rme32)) {
|
KBUILD_MODNAME, rme32)) {
|
||||||
snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
|
dev_err(rme32->card->dev, "unable to grab IRQ %d\n", pci->irq);
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
rme32->irq = pci->irq;
|
rme32->irq = pci->irq;
|
||||||
|
|
Loading…
Reference in New Issue