Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a405f43e authored by Alexander Beregalov's avatar Alexander Beregalov Committed by Greg Kroah-Hartman
Browse files

Staging: line6: convert to snd_card_create()

parent cea96778
Loading
Loading
Loading
Loading
+5 −4
Original line number Original line Diff line number Diff line
@@ -27,11 +27,12 @@ int line6_init_audio(struct usb_line6 *line6)
{
{
	static int dev;
	static int dev;
	struct snd_card *card;
	struct snd_card *card;
	int err;


	card = snd_card_new(line6_index[dev], line6_id[dev], THIS_MODULE, 0);
	err = snd_card_create(line6_index[dev], line6_id[dev], THIS_MODULE, 0,

			      &card);
	if (card == NULL)
	if (err < 0)
		return -ENOMEM;
		return err;


	line6->card = card;
	line6->card = card;