Home
last modified time | relevance | path

Searched refs:opts (Results 1 – 14 of 14) sorted by relevance

/arch/arm/mach-davinci/
Dtime.c86 unsigned long opts; member
103 #define USING_COMPARE(t) ((t)->opts & TIMER_OPTS_USE_COMPARE)
142 if (t->opts & TIMER_OPTS_ONESHOT) in timer32_config()
144 else if (t->opts & TIMER_OPTS_PERIODIC) in timer32_config()
174 .opts = TIMER_OPTS_DISABLED,
183 .opts = TIMER_OPTS_PERIODIC,
302 t->opts &= ~TIMER_OPTS_STATE_MASK; in davinci_shutdown()
303 t->opts |= TIMER_OPTS_DISABLED; in davinci_shutdown()
311 t->opts &= ~TIMER_OPTS_STATE_MASK; in davinci_set_oneshot()
312 t->opts |= TIMER_OPTS_ONESHOT; in davinci_set_oneshot()
[all …]
/arch/um/drivers/
Dstdio_console.c37 static struct chan_opts opts = { variable
79 return line_config(vts, ARRAY_SIZE(vts), str, &opts, error_out); in con_config()
163 new_title = add_xterm_umid(opts.xterm_title); in stdio_init()
165 opts.xterm_title = new_title; in stdio_init()
174 if (setup_one_line(vts, i, s, &opts, &error)) in stdio_init()
Dssl.c31 static struct chan_opts opts = { variable
73 return line_config(serial_lines, ARRAY_SIZE(serial_lines), str, &opts, in ssl_config()
163 new_title = add_xterm_umid(opts.xterm_title); in ssl_init()
165 opts.xterm_title = new_title; in ssl_init()
172 if (setup_one_line(serial_lines, i, s, &opts, &error)) in ssl_init()
Dtty.c19 static void *tty_chan_init(char *str, int device, const struct chan_opts *opts) in tty_chan_init() argument
34 .raw = opts->raw }); in tty_chan_init()
Dpty.c26 static void *pty_chan_init(char *str, int device, const struct chan_opts *opts) in pty_chan_init() argument
34 *data = ((struct pty_chan) { .announce = opts->announce, in pty_chan_init()
36 .raw = opts->raw }); in pty_chan_init()
Dxterm.c28 static void *xterm_init(char *str, int device, const struct chan_opts *opts) in xterm_init() argument
39 .title = opts->xterm_title, in xterm_init()
40 .raw = opts->raw } ); in xterm_init()
Dfd.c22 static void *fd_init(char *str, int device, const struct chan_opts *opts) in fd_init() argument
46 .raw = opts->raw }); in fd_init()
Dline.h86 const struct chan_opts *opts, char **error_out);
90 char *str, const struct chan_opts *opts,
Dchan_kern.c15 const struct chan_opts *opts) in not_configged_init() argument
439 const struct chan_opts *opts, char **error_out) in parse_chan() argument
462 data = (*ops->init)(str, device, opts); in parse_chan()
489 const struct chan_opts *opts, char **error_out) in parse_chan_pair() argument
509 new = parse_chan(line, in, device, opts, error_out); in parse_chan_pair()
517 new = parse_chan(line, out, device, opts, error_out); in parse_chan_pair()
526 new = parse_chan(line, str, device, opts, error_out); in parse_chan_pair()
Dnull.c15 static void *null_init(char *str, int device, const struct chan_opts *opts) in null_init() argument
Dport_user.c24 static void *port_init(char *str, int device, const struct chan_opts *opts) in port_init() argument
52 *data = ((struct port_chan) { .raw = opts->raw, in port_init()
Dchan.h32 const struct chan_opts *opts, char **error_out);
Dline.c367 const struct chan_opts *opts, char **error_out) in setup_one_line() argument
383 parse_chan_pair(NULL, line, n, opts, error_out); in setup_one_line()
398 err = parse_chan_pair(new, line, n, opts, error_out); in setup_one_line()
405 parse_chan_pair(NULL, line, n, opts, error_out); in setup_one_line()
459 const struct chan_opts *opts, char **error_out) in line_config() argument
479 return setup_one_line(lines, n, end, opts, error_out); in line_config()
/arch/sh/kernel/cpu/
Dinit.c45 static int x##_setup(char *opts) \