Staging: line6: convert to snd_card_create()
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
cea9677819
commit
a405f43ee3
|
@ -27,11 +27,12 @@ int line6_init_audio(struct usb_line6 *line6)
|
|||
{
|
||||
static int dev;
|
||||
struct snd_card *card;
|
||||
int err;
|
||||
|
||||
card = snd_card_new(line6_index[dev], line6_id[dev], THIS_MODULE, 0);
|
||||
|
||||
if (card == NULL)
|
||||
return -ENOMEM;
|
||||
err = snd_card_create(line6_index[dev], line6_id[dev], THIS_MODULE, 0,
|
||||
&card);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
line6->card = card;
|
||||
|
||||
|
|
Loading…
Reference in New Issue