@@ -645,7 +645,7 @@ int snd_ad1816a_create(struct snd_card *card,
snd_ad1816a_init(chip);
/* Register device */
- if ((error = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
+ if ((error = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops)) < 0) {
snd_ad1816a_free(chip);
return error;
}
@@ -700,7 +700,7 @@ int snd_es1688_create(struct snd_card *card,
goto exit;
/* Register device */
- err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
+ err = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops);
exit:
if (err)
snd_es1688_free(chip);
@@ -1831,7 +1831,7 @@ static int snd_es18xx_new_device(struct snd_card *card,
snd_es18xx_free(card);
return -ENODEV;
}
- err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
+ err = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops);
if (err < 0) {
snd_es18xx_free(card);
return err;
@@ -220,7 +220,7 @@ int snd_gus_create(struct snd_card *card,
gus->gf1.pcm_channels = pcm_channels;
gus->gf1.volume_ramp = 25;
gus->gf1.smooth_pan = 1;
- if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, gus, &ops)) < 0) {
+ if ((err = snd_device_new(card, SNDRV_DEV_CARD, gus, &ops)) < 0) {
snd_gus_free(gus);
return err;
}
@@ -578,7 +578,7 @@ static int snd_msnd_attach(struct snd_card *card)
goto err_release_region;
/* Register device */
- err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
+ err = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops);
if (err < 0)
goto err_release_region;
@@ -285,7 +285,7 @@ int snd_sbdsp_create(struct snd_card *card,
snd_sbdsp_free(chip);
return err;
}
- if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
+ if ((err = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops)) < 0) {
snd_sbdsp_free(chip);
return err;
}
@@ -1884,7 +1884,7 @@ int snd_wss_create(struct snd_card *card,
#endif
/* Register device */
- err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
+ err = snd_device_new(card, SNDRV_DEV_CARD, chip, &ops);
if (err < 0) {
snd_wss_free(chip);
return err;
... instead of SNDRV_DEV_LOWLEVEL. No functional change at this point. Signed-off-by: Takashi Iwai <tiwai@suse.de> --- sound/isa/ad1816a/ad1816a_lib.c | 2 +- sound/isa/es1688/es1688_lib.c | 2 +- sound/isa/es18xx.c | 2 +- sound/isa/gus/gus_main.c | 2 +- sound/isa/msnd/msnd_pinnacle.c | 2 +- sound/isa/sb/sb_common.c | 2 +- sound/isa/wss/wss_lib.c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-)