Lines Matching refs:options
81 &port->mapbase, device->options); in earlycon_init()
85 port->iobase, device->options); in earlycon_init()
88 static int __init parse_options(struct earlycon_device *device, char *options) in parse_options() argument
94 if (uart_parse_earlycon(options, &port->iotype, &addr, &options)) in parse_options()
117 if (options) { in parse_options()
118 device->baud = simple_strtoul(options, NULL, 0); in parse_options()
119 length = min(strcspn(options, " ") + 1, in parse_options()
120 (size_t)(sizeof(device->options))); in parse_options()
121 strlcpy(device->options, options, length); in parse_options()
233 const char *options) in of_setup_earlycon() argument
287 if (options) { in of_setup_earlycon()
288 early_console_dev.baud = simple_strtoul(options, NULL, 0); in of_setup_earlycon()
289 strlcpy(early_console_dev.options, options, in of_setup_earlycon()
290 sizeof(early_console_dev.options)); in of_setup_earlycon()
293 err = match->setup(&early_console_dev, options); in of_setup_earlycon()