Searched defs:options (Results 176 - 200 of 246) sorted by relevance

12345678910

/drivers/tty/serial/
H A Dserial_core.c1712 * @options: pointer to option string
1719 * options. The format of the string is <baud><parity><bits><flow>,
1723 uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow) argument
1725 char *s = options;
2110 static int uart_poll_init(struct tty_driver *driver, int line, char *options) argument
2127 if (options) {
2128 uart_parse_options(options, &baud, &parity, &bits, &flow);
H A Dserial_txx9.c946 static int __init serial_txx9_console_setup(struct console *co, char *options) argument
969 if (options)
970 uart_parse_options(options, &baud, &parity, &bits, &flow);
H A Dsh-sci.c2172 static int __devinit serial_console_setup(struct console *co, char *options) argument
2203 if (options)
2204 uart_parse_options(options, &baud, &parity, &bits, &flow);
/drivers/usb/host/whci/
H A Dwhci-hc.h51 __le32 options; member in struct:whc_qtd
83 __le32 options; /*< misc transfer options */ member in struct:whc_itd
/drivers/video/aty/
H A Dradeon_base.c2476 static int __init radeonfb_setup (char *options) argument
2480 if (!options || !*options)
2483 while ((this_opt = strsep (&options, ",")) != NULL) {
/drivers/video/
H A Dau1200fb.c1612 char *options = NULL; local
1617 fb_get_options(DRIVER_NAME, &options);
1619 if (!options)
1622 while ((this_opt = strsep(&options, ",")) != NULL) {
1690 /* Setup driver with options */
H A Dcirrusfb.c29 * Format this code with GNU indent '-kr -i8 -pcs' options.
2372 static int __init cirrusfb_setup(char *options) argument
2376 if (!options || !*options)
2379 while ((this_opt = strsep(&options, ",")) != NULL) {
H A Dcyber2000fb.c1489 * Parse Cyber2000fb options. Usage:
1493 static int cyber2000fb_setup(char *options) argument
1497 if (!options || !*options)
1500 while ((opt = strsep(&options, ",")) != NULL) {
H A Dfbmem.c1865 * (video=<name>:<options>)
1872 char *opt, *options = NULL; local
1888 options = opt + name_len + 1;
1891 if (options && !strncmp(options, "off", 3))
1895 *option = options;
1902 * video_setup - process command line options
1903 * @options: string of options
1905 * Process command line options fo
1914 video_setup(char *options) argument
[all...]
H A Dfsl-diu-fb.c1659 static int __init fsl_diu_setup(char *options) argument
1664 if (!options || !*options)
1667 while ((opt = strsep(&options, ",")) != NULL) {
1719 * For kernel boot options (in 'video=xxxfb:<options>' format)
H A Dmx3fb.c1541 * Parse user specified options (`video=mx3fb:')
1548 char *opt, *options = NULL; local
1550 if (fb_get_options("mx3fb", &options))
1553 if (!options || !*options)
1556 while ((opt = strsep(&options, ",")) != NULL) {
H A Dps3fb.c1261 char *options; local
1267 if (fb_get_options(DEVICE_NAME, &options))
1270 if (!options || !*options)
1274 char *this_opt = strsep(&options, ",");
H A Dpxafb.c2015 static int __devinit pxafb_parse_options(struct device *dev, char *options) argument
2020 if (!options || !*options)
2023 dev_dbg(dev, "options are \"%s\"\n", options ? options : "null");
2026 while ((this_opt = strsep(&options, ",")) != NULL) {
2039 char *options = NULL; local
2041 if (fb_get_options("pxafb", &options))
2044 if (options)
[all...]
H A Ds3fb.c1534 /* Parse user specified options */
1537 static int __init s3fb_setup(char *options) argument
1541 if (!options || !*options)
1544 while ((opt = strsep(&options, ",")) != NULL) {
H A Dstifb.c1316 stifb_setup(char *options);
1389 stifb_setup(char *options) argument
1393 if (!options || !*options)
1396 if (strncmp(options, "off", 3) == 0) {
1398 options += 3;
1401 if (strncmp(options, "bpp", 3) == 0) {
1402 options += 3;
1404 if (*options++ != ':')
1406 stifb_bpp_pref[i] = simple_strtoul(options,
[all...]
H A Dtdfxfb.c1593 static void __init tdfxfb_setup(char *options) argument
1597 if (!options || !*options)
1600 while ((this_opt = strsep(&options, ",")) != NULL) {
H A Dtmiofb.c1009 static void __init tmiofb_setup(char *options) argument
1013 if (!options || !*options)
1016 while ((this_opt = strsep(&options, ",")) != NULL) {
H A Dtridentfb.c1598 * Parse user specified options (`video=trident:')
1603 static int __init tridentfb_setup(char *options) argument
1606 if (!options || !*options)
1608 while ((opt = strsep(&options, ",")) != NULL) {
/drivers/video/omap/
H A Domapfb_main.c1885 static int __init omapfb_setup(char *options) argument
1890 pr_debug("omapfb: options %s\n", options);
1892 if (!options || !*options)
1895 while (!r && (this_opt = strsep(&options, ",")) != NULL) {
/drivers/video/omap2/omapfb/
H A Domapfb-main.c2132 char *str, *options, *this_opt; local
2138 options = str;
2140 while (!r && (this_opt = strsep(&options, ",")) != NULL) {
/drivers/video/riva/
H A Dfbdev.c1813 /* respect mode options */
2148 static int __devinit rivafb_setup(char *options) argument
2153 if (!options || !*options)
2156 while ((this_opt = strsep(&options, ",")) != NULL) {
/drivers/video/via/
H A Dviafbdev.c1976 char *options; local
1980 if (fb_get_options("viafb", &options))
1983 if (!options || !*options)
1986 while ((this_opt = strsep(&options, ",")) != NULL) {
/drivers/block/
H A Drbd.c343 * mount options
401 char *options)
413 opt = ceph_parse_options(options, mon_addr,
524 header->obj_order = ondisk->options.order;
525 header->crypt_type = ondisk->options.crypt_type;
526 header->comp_type = ondisk->options.comp_type;
2301 * on the list of monitor addresses and other options provided via
2308 char *options,
2323 len = copy_token(&buf, options, options_size);
2364 char *options local
399 rbd_get_client(const char *mon_addr, size_t mon_addr_len, char *options) argument
2304 rbd_add_parse_args(struct rbd_device *rbd_dev, const char *buf, const char **mon_addrs, size_t *mon_addrs_size, char *options, size_t options_size) argument
[all...]
/drivers/infiniband/hw/nes/
H A Dnes_cm.h424 u32 options; member in struct:nes_cm_core
/drivers/media/video/cx18/
H A Dcx18-driver.h608 struct cx18_options options; /* User options */ member in struct:cx18

Completed in 455 milliseconds

12345678910