Lines Matching full:node
179 int node; in decode_sromc() local
181 node = fdtdec_next_compatible(blob, 0, COMPAT_SAMSUNG_EXYNOS5_SROMC); in decode_sromc()
182 if (node < 0) { in decode_sromc()
183 debug("Could not find SROMC node\n"); in decode_sromc()
184 return node; in decode_sromc()
187 config->bank = fdtdec_get_int(blob, node, "bank", 0); in decode_sromc()
188 config->width = fdtdec_get_int(blob, node, "width", 2); in decode_sromc()
190 err = fdtdec_get_int_array(blob, node, "srom-timing", config->timing, in decode_sromc()
207 int node; in board_eth_init() local
209 node = decode_sromc(gd->fdt_blob, &config); in board_eth_init()
210 if (node < 0) { in board_eth_init()
214 node = fdtdec_next_compatible(gd->fdt_blob, node, COMPAT_SMSC_LAN9215); in board_eth_init()
215 if (node < 0) { in board_eth_init()
220 /* We now have a node, so any problems from now on are errors */ in board_eth_init()
221 base_addr = fdtdec_get_addr(gd->fdt_blob, node, "reg"); in board_eth_init()
329 int node; in reset_misc() local
331 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, in reset_misc()
333 if (node < 0) in reset_misc()
336 gpio_request_by_name_nodev(offset_to_ofnode(node), "reset-gpio", 0, in reset_misc()