Searched defs:synth (Results 1 - 14 of 14) sorted by relevance

/drivers/staging/speakup/
H A Dspeakup_acntsa.c33 static int synth_probe(struct spk_synth *synth);
127 static int synth_probe(struct spk_synth *synth) argument
131 failed = serial_synth_probe(synth);
133 spk_synth_immediate(synth, "\033=R\r");
136 synth->alive = !failed;
H A Dspeakup_audptr.c30 #define SYNTH_CLEAR 0x18 /* flush synth buffer */
31 #define PROCSPEECH '\r' /* start synth processing speech char */
33 static int synth_probe(struct spk_synth *synth);
34 static void synth_flush(struct spk_synth *synth);
132 static void synth_flush(struct spk_synth *synth) argument
144 static void synth_version(struct spk_synth *synth) argument
148 spk_synth_immediate(synth, "\x05[Q]");
152 /* read version string from synth */
158 pr_info("%s version: %s", synth->long_name, synth_id);
161 static int synth_probe(struct spk_synth *synth) argument
[all...]
H A Dspeakup_spkout.c33 static void synth_flush(struct spk_synth *synth);
131 static void synth_flush(struct spk_synth *synth) argument
H A Dspeakup_apollo.c38 static void do_catch_up(struct spk_synth *synth);
136 static void do_catch_up(struct spk_synth *synth) argument
164 synth->flush(synth);
188 if (spk_serial_out(synth->procspeech))
H A Dspeakup_decext.c52 static void do_catch_up(struct spk_synth *synth);
53 static void synth_flush(struct spk_synth *synth);
154 static void do_catch_up(struct spk_synth *synth) argument
178 synth->flush(synth);
224 static void synth_flush(struct spk_synth *synth) argument
227 spk_synth_immediate(synth, "\033P;10z\033\\");
H A Dspeakup_ltlk.c33 static int synth_probe(struct spk_synth *synth);
140 static void synth_interrogate(struct spk_synth *synth) argument
144 spk_synth_immediate(synth, "\x18\x01?");
157 pr_info("%s: ROM version: %s\n", synth->long_name, rom_v);
160 static int synth_probe(struct spk_synth *synth) argument
164 failed = serial_synth_probe(synth);
166 synth_interrogate(synth);
167 synth->alive = !failed;
H A Dspeakup_acntpc.c40 static int synth_probe(struct spk_synth *synth);
42 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
43 static void do_catch_up(struct spk_synth *synth);
44 static void synth_flush(struct spk_synth *synth);
152 static const char *synth_immediate(struct spk_synth *synth, const char *buf) argument
172 static void do_catch_up(struct spk_synth *synth) argument
199 synth->flush(synth);
251 static void synth_flush(struct spk_synth *synth) argument
256 static int synth_probe(struct spk_synth *synth) argument
[all...]
H A Dspeakup_dectlk.c46 static void do_catch_up(struct spk_synth *synth);
47 static void synth_flush(struct spk_synth *synth);
203 static void do_catch_up(struct spk_synth *synth) argument
241 synth->flush(synth);
288 static void synth_flush(struct spk_synth *synth) argument
H A Dspeakup_dtlk.c39 static int synth_probe(struct spk_synth *synth);
41 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
42 static void do_catch_up(struct spk_synth *synth);
43 static void synth_flush(struct spk_synth *synth);
191 static void do_catch_up(struct spk_synth *synth) argument
212 synth->flush(synth);
246 static const char *synth_immediate(struct spk_synth *synth, const char *buf) argument
260 static void synth_flush(struct spk_synth *synth) argument
280 static struct synth_settings *synth_interrogate(struct spk_synth *synth) argument
322 synth_probe(struct spk_synth *synth) argument
[all...]
H A Dspeakup_keypc.c39 static int synth_probe(struct spk_synth *synth);
41 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
42 static void do_catch_up(struct spk_synth *synth);
43 static void synth_flush(struct spk_synth *synth);
150 pr_warn("synth timeout %d %d %d %d\n", s1, s2, s3, s4);
154 static const char *synth_immediate(struct spk_synth *synth, const char *buf) argument
174 static void do_catch_up(struct spk_synth *synth) argument
200 synth->flush(synth);
258 static void synth_flush(struct spk_synth *synth) argument
263 synth_probe(struct spk_synth *synth) argument
[all...]
H A Dspeakup_soft.c33 #define SOFTSYNTH_MINOR 26 /* might as well give it one more than /dev/synth */
37 static int softsynth_probe(struct spk_synth *synth);
39 static int softsynth_is_alive(struct spk_synth *synth);
126 .long_name = "software synth",
318 static int softsynth_probe(struct spk_synth *synth) argument
344 static int softsynth_is_alive(struct spk_synth *synth) argument
H A Dsynth.c22 struct spk_synth *synth; variable in typeref:struct:spk_synth
35 int serial_synth_probe(struct spk_synth *synth) argument
40 if ((synth->ser >= SPK_LO_TTY) && (synth->ser <= SPK_HI_TTY)) {
41 ser = spk_serial_init(synth->ser);
51 pr_warn("ttyS%i is an invalid port\n", synth->ser);
54 pr_info("%s: not found\n", synth->long_name);
58 synth->long_name, synth->ser, synth
70 spk_do_catch_up(struct spk_synth *synth) argument
136 spk_synth_immediate(struct spk_synth *synth, const char *buff) argument
152 spk_synth_flush(struct spk_synth *synth) argument
158 spk_synth_is_alive_nop(struct spk_synth *synth) argument
165 spk_synth_is_alive_restart(struct spk_synth *synth) argument
331 struct spk_synth *synth = NULL; local
[all...]
H A Dspeakup_decpc.c141 static int synth_probe(struct spk_synth *synth);
143 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
144 static void do_catch_up(struct spk_synth *synth);
145 static void synth_flush(struct spk_synth *synth);
304 static void synth_flush(struct spk_synth *synth) argument
367 static void do_catch_up(struct spk_synth *synth) argument
390 synth->flush(synth);
437 static const char *synth_immediate(struct spk_synth *synth, const char *buf) argument
450 static int synth_probe(struct spk_synth *synth) argument
[all...]
/drivers/net/wireless/p54/
H A Deeprom.c680 u16 synth = 0; local
753 synth = le16_to_cpu(exp_if->variant);
829 if (!synth || !priv->iq_autocal || !priv->output_limit ||
841 priv->rxhw = synth & PDR_SYNTH_FRONTEND_MASK;
844 if (!(synth & PDR_SYNTH_24_GHZ_DISABLED))
847 if (!(synth & PDR_SYNTH_5_GHZ_DISABLED))
850 if ((synth & PDR_SYNTH_RX_DIV_MASK) == PDR_SYNTH_RX_DIV_SUPPORTED)
852 if ((synth & PDR_SYNTH_TX_DIV_MASK) == PDR_SYNTH_TX_DIV_SUPPORTED)

Completed in 102 milliseconds