Searched refs:tone (Results 1 - 25 of 71) sorted by relevance

123

/linux-master/include/linux/
H A Ddtlk.h20 synthesizers or tone generators
75 unsigned char tone; /* nX; 0-2 */ member in struct:dtlk_settings
/linux-master/drivers/accessibility/speakup/
H A Dspeakup_dtlk.h13 * synthesizers or tone generators
50 u_char tone; /* nX; 0-2 */ member in struct:synth_settings
H A Dspeakup_dummy.c64 __ATTR(tone, 0644, spk_var_show, spk_var_store);
149 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
163 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_spkout.c57 __ATTR(tone, 0644, spk_var_show, spk_var_store);
140 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
151 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_txprt.c56 __ATTR(tone, 0644, spk_var_show, spk_var_store);
133 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
144 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_acntsa.c55 __ATTR(tone, 0644, spk_var_show, spk_var_store);
145 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
154 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_bns.c51 __ATTR(tone, 0644, spk_var_show, spk_var_store);
128 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
138 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_ltlk.c62 __ATTR(tone, 0644, spk_var_show, spk_var_store);
177 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
192 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_audptr.c57 __ATTR(tone, 0644, spk_var_show, spk_var_store);
173 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
185 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_acntpc.c69 __ATTR(tone, 0644, spk_var_show, spk_var_store);
320 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
330 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
H A Dspeakup_dtlk.c80 __ATTR(tone, 0644, spk_var_show, spk_var_store);
315 status.tone = *t++;
392 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
404 MODULE_PARM_DESC(tone, "Set the tone variable on load.");
/linux-master/sound/pci/hda/
H A Dhda_beep.h22 int tone; member in struct:hda_beep
26 unsigned int linear_tone:1; /* linear tone for IDT/STAC codec */
H A Dhda_beep.c23 /* generate or stop tone */
24 static void generate_tone(struct hda_beep *beep, int tone) argument
28 if (tone && !beep->playing) {
35 AC_VERB_SET_BEEP_CONTROL, tone);
36 if (!tone && beep->playing) {
50 generate_tone(beep, beep->tone);
53 /* (non-standard) Linear beep tone calculation for IDT/STAC codecs
55 * The tone frequency of beep generator on IDT/STAC codecs is
56 * defined from the 8bit tone parameter, in Hz,
57 * freq = 48000 * (257 - tone) / 102
[all...]
/linux-master/drivers/isdn/mISDN/
H A Ddsp_tones.c232 * tone sequence definition *
236 int tone; member in struct:pattern
359 * copy tone data *
365 * memcpy per function call, or two memcpy if the tone sequence changes.
373 * if tones has finished (e.g. knocking tone), dsp->tones is turned off
379 struct dsp_tone *tone = &dsp->tone; local
381 /* if we have no tone, we copy silence */
382 if (!tone->tone) {
463 struct dsp_tone *tone = &dsp->tone; local
496 dsp_tone(struct dsp *dsp, int tone) argument
[all...]
H A Ddsp.h150 int tone; member in struct:dsp_tone
180 struct dsp_tone tone; member in struct:dsp
260 extern int dsp_tone(struct dsp *dsp, int tone);
H A Ddsp_core.c12 * Real-time tone generation
352 case DSP_TONE_PATT_ON: /* play tone */
362 printk(KERN_DEBUG "%s: turn tone 0x%x on\n",
369 if (!dsp->tone.tone)
372 case DSP_TONE_PATT_OFF: /* stop tone */
378 printk(KERN_DEBUG "%s: turn tone off\n", __func__);
892 /* send data to tx-buffer (if no tone is played) */
893 if (!dsp->tone.tone) {
[all...]
/linux-master/drivers/media/pci/ddbridge/
H A Dddbridge-max.c53 v = LNB_TONE & (dev->link[link].lnb.tone << (15 - lnb));
118 enum fe_sec_tone_mode tone)
123 switch (tone) {
125 if (!(dev->link[link].lnb.tone & mask))
127 dev->link[link].lnb.tone &= ~(1ULL << input);
130 if (dev->link[link].lnb.tone & mask)
132 dev->link[link].lnb.tone |= (1ULL << input);
193 static int max_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
204 dvb->tone = tone;
117 lnb_set_tone(struct ddb *dev, u32 link, u32 input, enum fe_sec_tone_mode tone) argument
[all...]
/linux-master/drivers/media/dvb-frontends/
H A Dcx24123.c752 int i, val, tone; local
756 /* stop continuous tone if enabled */
757 tone = cx24123_readreg(state, 0x29);
758 if (tone & 0x10)
759 cx24123_writereg(state, 0x29, tone & ~0x50);
764 /* select tone mode */
777 /* restart continuous tone if enabled */
778 if (tone & 0x10)
779 cx24123_writereg(state, 0x29, tone & ~0x40);
788 int val, tone; local
956 cx24123_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
[all...]
H A Dlnbp21.c78 enum fe_sec_tone_mode tone)
85 switch (tone) {
77 lnbp21_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
H A Dtda8083.c173 enum fe_sec_tone_mode tone)
177 switch (tone) {
383 enum fe_sec_tone_mode tone)
387 tda8083_set_tone (state, tone);
172 tda8083_set_tone(struct tda8083_state *state, enum fe_sec_tone_mode tone) argument
382 tda8083_diseqc_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
/linux-master/drivers/media/firewire/
H A Dfiredtv-fe.c65 static int fdtv_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
69 fdtv->tone = tone;
/linux-master/drivers/media/usb/dvb-usb/
H A Dvp702x-fe.c251 enum fe_sec_tone_mode tone)
259 st->tone_mode = tone;
261 if (tone == SEC_TONE_ON)
336 s->lnb_buf[3] = 0xff; /* 0=tone burst, 2=data burst, ff=off */
250 vp702x_fe_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
/linux-master/drivers/media/pci/bt8xx/
H A Ddst_common.h108 enum fe_sec_tone_mode tone; member in struct:dst_state
/linux-master/drivers/staging/media/av7110/
H A Dbudget-patch.c116 enum fe_sec_tone_mode tone)
120 switch (tone) {
211 enum fe_sec_tone_mode tone)
215 switch (tone) {
115 budget_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
210 budget_patch_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument
/linux-master/drivers/media/usb/ttusb-dec/
H A Dttusbdecfe.c159 enum fe_sec_tone_mode tone)
163 state->hi_band = (SEC_TONE_ON == tone);
158 ttusbdecfe_dvbs_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone) argument

Completed in 180 milliseconds

123