Lines Matching defs:match
132 static int __init register_earlycon(char *buf, const struct earlycon_id *match)
146 earlycon_init(&early_console_dev, match->name);
147 err = match->setup(&early_console_dev, buf);
159 * setup_earlycon - match and register earlycon console
190 const struct earlycon_id *match = *p_match;
191 size_t len = strlen(match->name);
193 if (strncmp(buf, match->name, len))
197 if (empty_compatible && *match->compatible)
207 return register_earlycon(buf, match);
248 int __init of_setup_earlycon(const struct earlycon_id *match,
262 pr_warn("[%s] bad address\n", match->name);
291 pr_warn("[%s] unsupported reg-io-width\n", match->name);
309 earlycon_init(&early_console_dev, match->name);
310 err = match->setup(&early_console_dev, options);