diff mbox

[09/20] ALSA: mips: Use SNDRV_DEV_CARD for card objects

Message ID 1392202347-11774-10-git-send-email-tiwai@suse.de (mailing list archive)
State Deferred
Delegated to: Takashi Iwai
Headers show

Commit Message

Takashi Iwai Feb. 12, 2014, 10:52 a.m. UTC
... instead of SNDRV_DEV_LOWLEVEL.
No functional change at this point.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 sound/mips/hal2.c       | 2 +-
 sound/mips/sgio2audio.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/sound/mips/hal2.c b/sound/mips/hal2.c
index 23441b9e6148..beb08fc00d9e 100644
--- a/sound/mips/hal2.c
+++ b/sound/mips/hal2.c
@@ -864,7 +864,7 @@  static int hal2_create(struct snd_card *card, struct snd_hal2 **rchip)
 	hpc3->pbus_dmacfg[hal2->dac.pbus.pbusnr][0] = 0x8208844;
 	hpc3->pbus_dmacfg[hal2->adc.pbus.pbusnr][0] = 0x8208844;
 
-	err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, hal2, &hal2_ops);
+	err = snd_device_new(card, SNDRV_DEV_CARD, hal2, &hal2_ops);
 	if (err < 0) {
 		free_irq(SGI_HPCDMA_IRQ, hal2);
 		kfree(hal2);
diff --git a/sound/mips/sgio2audio.c b/sound/mips/sgio2audio.c
index 04bb06c03ec8..c87d2b7e61ca 100644
--- a/sound/mips/sgio2audio.c
+++ b/sound/mips/sgio2audio.c
@@ -905,7 +905,7 @@  static int snd_sgio2audio_create(struct snd_card *card,
 		return err;
 	}
 
-	err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
+	err = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops);
 	if (err < 0) {
 		snd_sgio2audio_free(chip);
 		return err;