Lines Matching defs:err
65 int err;
70 err = snd_card_new(&motu->unit->device, -1, NULL, THIS_MODULE, 0,
72 if (err < 0)
79 err = snd_motu_transaction_register(motu);
80 if (err < 0)
83 err = snd_motu_stream_init_duplex(motu);
84 if (err < 0)
89 err = snd_motu_create_pcm_devices(motu);
90 if (err < 0)
97 err = snd_motu_create_midi_devices(motu);
98 if (err < 0)
102 err = snd_motu_create_hwdep_device(motu);
103 if (err < 0)
106 err = snd_card_register(motu->card);
107 if (err < 0)
116 "Sound card registration failed: %d\n", err);