Lines Matching refs:acard
103 snd_wavefront_pnp (int dev, snd_wavefront_card_t *acard, struct pnp_card_link *card, in snd_wavefront_pnp() argument
113 acard->wss = pnp_request_card_device(card, id->devs[0].id, NULL); in snd_wavefront_pnp()
114 if (acard->wss == NULL) in snd_wavefront_pnp()
129 acard->mpu = pnp_request_card_device(card, id->devs[2].id, NULL); in snd_wavefront_pnp()
130 if (acard->mpu == NULL) in snd_wavefront_pnp()
136 acard->synth = pnp_request_card_device(card, id->devs[3].id, NULL); in snd_wavefront_pnp()
137 if (acard->synth == NULL) in snd_wavefront_pnp()
142 pdev = acard->wss; in snd_wavefront_pnp()
170 pdev = acard->synth; in snd_wavefront_pnp()
188 pdev = acard->mpu; in snd_wavefront_pnp()
220 snd_wavefront_card_t *acard; in snd_wavefront_ics2115_interrupt() local
222 acard = (snd_wavefront_card_t *) dev_id; in snd_wavefront_ics2115_interrupt()
224 if (acard == NULL) in snd_wavefront_ics2115_interrupt()
227 if (acard->wavefront.interrupts_are_midi) { in snd_wavefront_ics2115_interrupt()
228 snd_wavefront_midi_interrupt (acard); in snd_wavefront_ics2115_interrupt()
230 snd_wavefront_internal_interrupt (acard); in snd_wavefront_ics2115_interrupt()
238 snd_wavefront_card_t *acard) in snd_wavefront_new_synth() argument
242 if (snd_wavefront_detect (acard) < 0) { in snd_wavefront_new_synth()
246 if (snd_wavefront_start (&acard->wavefront) < 0) { in snd_wavefront_new_synth()
264 snd_wavefront_card_t *acard, in snd_wavefront_new_fx() argument
270 if (snd_wavefront_fx_start (&acard->wavefront)) { in snd_wavefront_new_fx()
291 snd_wavefront_card_t *acard, in snd_wavefront_new_midi() argument
301 acard->wavefront.midi.base = port; in snd_wavefront_new_midi()
302 if (snd_wavefront_midi_start (acard)) { in snd_wavefront_new_midi()
332 snd_wavefront_card_t *acard = (snd_wavefront_card_t *)card->private_data; in snd_wavefront_free() local
334 if (acard) { in snd_wavefront_free()
335 release_and_free_resource(acard->wavefront.res_base); in snd_wavefront_free()
336 if (acard->wavefront.irq > 0) in snd_wavefront_free()
337 free_irq(acard->wavefront.irq, (void *)acard); in snd_wavefront_free()
344 snd_wavefront_card_t *acard; in snd_wavefront_card_new() local
351 acard = card->private_data; in snd_wavefront_card_new()
352 acard->wavefront.irq = -1; in snd_wavefront_card_new()
353 spin_lock_init(&acard->wavefront.irq_lock); in snd_wavefront_card_new()
354 init_waitqueue_head(&acard->wavefront.interrupt_sleeper); in snd_wavefront_card_new()
355 spin_lock_init(&acard->wavefront.midi.open); in snd_wavefront_card_new()
356 spin_lock_init(&acard->wavefront.midi.virtual); in snd_wavefront_card_new()
357 acard->wavefront.card = card; in snd_wavefront_card_new()
366 snd_wavefront_card_t *acard = card->private_data; in snd_wavefront_probe() local
412 acard->wavefront.res_base = request_region(ics2115_port[dev], 16, in snd_wavefront_probe()
414 if (acard->wavefront.res_base == NULL) { in snd_wavefront_probe()
420 IRQF_DISABLED, "ICS2115", acard)) { in snd_wavefront_probe()
425 acard->wavefront.irq = ics2115_irq[dev]; in snd_wavefront_probe()
426 acard->wavefront.base = ics2115_port[dev]; in snd_wavefront_probe()
428 wavefront_synth = snd_wavefront_new_synth(card, hw_dev, acard); in snd_wavefront_probe()
466 acard, in snd_wavefront_probe()
482 acard, in snd_wavefront_probe()
494 if (acard->wavefront.has_fx) { in snd_wavefront_probe()
497 acard, in snd_wavefront_probe()