Home
last modified time | relevance | path

Searched refs:what (Results 1 – 18 of 18) sorted by relevance

/sound/isa/gus/
Dgus_reset.c55 void snd_gf1_set_default_handlers(struct snd_gus_card * gus, unsigned int what) in snd_gf1_set_default_handlers() argument
57 if (what & SNDRV_GF1_HANDLER_MIDI_OUT) in snd_gf1_set_default_handlers()
59 if (what & SNDRV_GF1_HANDLER_MIDI_IN) in snd_gf1_set_default_handlers()
61 if (what & SNDRV_GF1_HANDLER_TIMER1) in snd_gf1_set_default_handlers()
63 if (what & SNDRV_GF1_HANDLER_TIMER2) in snd_gf1_set_default_handlers()
65 if (what & SNDRV_GF1_HANDLER_VOICE) { in snd_gf1_set_default_handlers()
68 voice = &gus->gf1.voices[what & 0xffff]; in snd_gf1_set_default_handlers()
74 if (what & SNDRV_GF1_HANDLER_DMA_WRITE) in snd_gf1_set_default_handlers()
76 if (what & SNDRV_GF1_HANDLER_DMA_READ) in snd_gf1_set_default_handlers()
/sound/soc/bcm/
DKconfig19 If you don't know what to do here, say N.
28 If you don't know what to do here, say N
/sound/isa/sb/
Dsb16_main.c646 static int snd_sb16_set_dma_mode(struct snd_sb *chip, int what) in snd_sb16_set_dma_mode() argument
649 if (snd_BUG_ON(what)) in snd_sb16_set_dma_mode()
653 if (what == 0) { in snd_sb16_set_dma_mode()
655 } else if (what == 1) { in snd_sb16_set_dma_mode()
657 } else if (what == 2) { in snd_sb16_set_dma_mode()
/sound/sparc/
Dcs4231.c443 unsigned int what, int on) in cs4231_dma_trigger() argument
448 if (what & CS4231_PLAYBACK_ENABLE) { in cs4231_dma_trigger()
460 if (what & CS4231_RECORD_ENABLE) { in cs4231_dma_trigger()
483 unsigned int what = 0; in snd_cs4231_trigger() local
489 what |= CS4231_PLAYBACK_ENABLE; in snd_cs4231_trigger()
492 what |= CS4231_RECORD_ENABLE; in snd_cs4231_trigger()
499 cs4231_dma_trigger(substream, what, 1); in snd_cs4231_trigger()
500 chip->image[CS4231_IFACE_CTRL] |= what; in snd_cs4231_trigger()
502 cs4231_dma_trigger(substream, what, 0); in snd_cs4231_trigger()
503 chip->image[CS4231_IFACE_CTRL] &= ~what; in snd_cs4231_trigger()
/sound/pci/
Dens1370.c795 unsigned int what = 0; in snd_ensoniq_trigger() local
799 what |= ES_P1_PAUSE; in snd_ensoniq_trigger()
802 what |= ES_P2_PAUSE; in snd_ensoniq_trigger()
809 ensoniq->sctrl |= what; in snd_ensoniq_trigger()
811 ensoniq->sctrl &= ~what; in snd_ensoniq_trigger()
819 unsigned int what = 0; in snd_ensoniq_trigger() local
823 what |= ES_DAC1_EN; in snd_ensoniq_trigger()
826 what |= ES_DAC2_EN; in snd_ensoniq_trigger()
829 what |= ES_ADC_EN; in snd_ensoniq_trigger()
835 ensoniq->ctrl |= what; in snd_ensoniq_trigger()
[all …]
Dsonicvibes.c581 static int snd_sonicvibes_trigger(struct sonicvibes * sonic, int what, int cmd) in snd_sonicvibes_trigger() argument
587 if (!(sonic->enable & what)) { in snd_sonicvibes_trigger()
588 sonic->enable |= what; in snd_sonicvibes_trigger()
592 if (sonic->enable & what) { in snd_sonicvibes_trigger()
593 sonic->enable &= ~what; in snd_sonicvibes_trigger()
/sound/drivers/
DKconfig66 what you want. To make this driver play nicely with other
77 Say Y only if you really know what you do.
124 If you don't know what MIDI is, say N here.
/sound/core/seq/
DKconfig12 unless you know what you're doing.
/sound/isa/wss/
Dwss_lib.c471 unsigned int what; in snd_wss_trigger() local
486 what = 0; in snd_wss_trigger()
489 what |= CS4231_PLAYBACK_ENABLE; in snd_wss_trigger()
492 what |= CS4231_RECORD_ENABLE; in snd_wss_trigger()
498 chip->image[CS4231_IFACE_CTRL] |= what; in snd_wss_trigger()
500 chip->trigger(chip, what, 1); in snd_wss_trigger()
502 chip->image[CS4231_IFACE_CTRL] &= ~what; in snd_wss_trigger()
504 chip->trigger(chip, what, 0); in snd_wss_trigger()
/sound/pci/ali5451/
Dali5451.c1072 unsigned int what, whati; in snd_ali_trigger() local
1090 what = whati = 0; in snd_ali_trigger()
1095 what |= 1 << (pvoice->number & 0x1f); in snd_ali_trigger()
1100 what |= 1 << (evoice->number & 0x1f); in snd_ali_trigger()
1116 outl(what, ALI_REG(codec, ALI_STOP)); in snd_ali_trigger()
1124 outl(what, ALI_REG(codec, ALI_START)); in snd_ali_trigger()
1125 dev_dbg(codec->card->dev, "trigger: what=%xh whati=%xh\n", what, whati); in snd_ali_trigger()
/sound/pci/ice1712/
Dice1712.c908 unsigned int what; in snd_ice1712_pro_trigger() local
912 what = ICE1712_PLAYBACK_PAUSE; in snd_ice1712_pro_trigger()
917 old |= what; in snd_ice1712_pro_trigger()
919 old &= ~what; in snd_ice1712_pro_trigger()
927 unsigned int what = 0; in snd_ice1712_pro_trigger() local
933 what |= ICE1712_PLAYBACK_START; in snd_ice1712_pro_trigger()
936 what |= ICE1712_CAPTURE_START_SHADOW; in snd_ice1712_pro_trigger()
943 old |= what; in snd_ice1712_pro_trigger()
945 old &= ~what; in snd_ice1712_pro_trigger()
Dice1724.c525 unsigned char what; in snd_vt1724_pcm_trigger() local
529 what = 0; in snd_vt1724_pcm_trigger()
534 what |= reg->start; in snd_vt1724_pcm_trigger()
545 old |= what; in snd_vt1724_pcm_trigger()
547 old &= ~what; in snd_vt1724_pcm_trigger()
558 old |= what; in snd_vt1724_pcm_trigger()
560 old &= ~what; in snd_vt1724_pcm_trigger()
/sound/sh/
Daica.c86 static void spu_memset(u32 toi, u32 what, int length) in spu_memset() argument
96 writel(what, toi + SPU_MEMORY_BASE); in spu_memset()
/sound/aoa/codecs/
Donyx.c770 enum clock_switch what) in onyx_switch_clock() argument
776 switch (what) { in onyx_switch_clock()
/sound/pci/cs46xx/
Dcs46xx_dsp_scb_types.h23 #error Not __LITTLE_ENDIAN and not __BIG_ENDIAN, then what ???
/sound/isa/ad1816a/
Dad1816a_lib.c166 static int snd_ad1816a_trigger(struct snd_ad1816a *chip, unsigned char what, in snd_ad1816a_trigger() argument
189 snd_printk(KERN_WARNING "invalid trigger mode 0x%x.\n", what); in snd_ad1816a_trigger()
/sound/pci/trident/
Dtrident_main.c1502 unsigned int what, whati, capture_flag, spdif_flag; in snd_trident_trigger() local
1520 what = whati = capture_flag = spdif_flag = 0; in snd_trident_trigger()
1527 what |= 1 << (voice->number & 0x1f); in snd_trident_trigger()
1531 what |= 1 << (evoice->number & 0x1f); in snd_trident_trigger()
1563 outl(what, TRID_REG(trident, T4D_STOP_B)); in snd_trident_trigger()
1572 outl(what, TRID_REG(trident, T4D_START_B)); in snd_trident_trigger()
/sound/pci/asihpi/
Dhpi_internal.h660 u16 what; member