Lines Matching refs:offs
64 int offs; in get_console_node_from_dt() local
70 offs = find_chosen_node(fdt); in get_console_node_from_dt()
71 if (offs < 0) { in get_console_node_from_dt()
76 prop = fdt_get_property(fdt, offs, "stdout-path", NULL); in get_console_node_from_dt()
102 offs = fdt_path_offset(fdt, uart); in get_console_node_from_dt()
103 if (offs >= 0) { in get_console_node_from_dt()
105 *offs_out = offs; in get_console_node_from_dt()
127 int offs; in configure_console_from_dt() local
130 if (get_console_node_from_dt(fdt, &offs, &uart, &parms)) in configure_console_from_dt()
133 dt_drv = dt_find_compatible_driver(fdt, offs); in configure_console_from_dt()
150 if (sdrv->dev_init(dev, fdt, offs, parms) < 0) { in configure_console_from_dt()