ALSA: parisc: Convert to snd_card_new() with a device pointer
Also remove superfluous snd_card_set_dev() calls. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
bee1bb19cf
commit
5f32c314f9
|
@ -959,8 +959,6 @@ snd_harmony_create(struct snd_card *card,
|
|||
goto free_and_ret;
|
||||
}
|
||||
|
||||
snd_card_set_dev(card, &padev->dev);
|
||||
|
||||
*rchip = h;
|
||||
|
||||
return 0;
|
||||
|
@ -977,7 +975,7 @@ snd_harmony_probe(struct parisc_device *padev)
|
|||
struct snd_card *card;
|
||||
struct snd_harmony *h;
|
||||
|
||||
err = snd_card_create(index, id, THIS_MODULE, 0, &card);
|
||||
err = snd_card_new(&padev->dev, index, id, THIS_MODULE, 0, &card);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
|
|
Loading…
Reference in New Issue