Skip to content

Commit

Permalink
ALSA: mips: Convert to snd_card_new() with a device pointer
Browse files Browse the repository at this point in the history
Also remove superfluous snd_card_set_dev() calls.

Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Feb 14, 2014
1 parent 7d13211 commit bee1bb1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions sound/mips/au1x00.c
Original file line number Diff line number Diff line change
Expand Up @@ -601,8 +601,8 @@ static int au1000_ac97_probe(struct platform_device *pdev)
struct snd_ac97_bus *pbus;
struct snd_ac97_template ac97;

err = snd_card_create(-1, "AC97", THIS_MODULE,
sizeof(struct snd_au1000), &card);
err = snd_card_new(&pdev->dev, -1, "AC97", THIS_MODULE,
sizeof(struct snd_au1000), &card);
if (err < 0)
return err;

Expand Down
3 changes: 1 addition & 2 deletions sound/mips/hal2.c
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ static int hal2_probe(struct platform_device *pdev)
struct snd_hal2 *chip;
int err;

err = snd_card_create(index, id, THIS_MODULE, 0, &card);
err = snd_card_new(&pdev->dev, index, id, THIS_MODULE, 0, &card);
if (err < 0)
return err;

Expand All @@ -889,7 +889,6 @@ static int hal2_probe(struct platform_device *pdev)
snd_card_free(card);
return err;
}
snd_card_set_dev(card, &pdev->dev);

err = hal2_pcm_create(chip);
if (err < 0) {
Expand Down
3 changes: 1 addition & 2 deletions sound/mips/sgio2audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ static int snd_sgio2audio_probe(struct platform_device *pdev)
struct snd_sgio2audio *chip;
int err;

err = snd_card_create(index, id, THIS_MODULE, 0, &card);
err = snd_card_new(&pdev->dev, index, id, THIS_MODULE, 0, &card);
if (err < 0)
return err;

Expand All @@ -929,7 +929,6 @@ static int snd_sgio2audio_probe(struct platform_device *pdev)
snd_card_free(card);
return err;
}
snd_card_set_dev(card, &pdev->dev);

err = snd_sgio2audio_new_pcm(chip);
if (err < 0) {
Expand Down

0 comments on commit bee1bb1

Please sign in to comment.