Lines Matching refs:error
55 int error;
57 error = snd_card_new(dev, index[n], id[n], THIS_MODULE, 0, &card);
58 if (error < 0) {
60 return error;
66 error = -EBUSY;
75 error = snd_opl3_create(card, port[n], port[n] + 2, OPL3_HW_AUTO, 1, &opl3);
76 if (error < 0) {
81 error = snd_opl3_hwdep_new(opl3, 0, 0, NULL);
82 if (error < 0) {
87 error = snd_card_register(card);
88 if (error < 0) {
97 return error;