Lines Matching refs:get_property
1976 np->name = get_property(np, "name", 0); in finish_node()
1977 np->type = get_property(np, "device_type", 0); in finish_node()
1986 ip = (int *) get_property(np, "#address-cells", 0); in finish_node()
1989 ip = (int *) get_property(np, "#size-cells", 0); in finish_node()
1998 np->name = get_property(np, "compatible", 0); in finish_node()
2033 interrupts = (unsigned int *)get_property(np, "interrupts", &l); in finish_node_interrupts()
2038 reg = (unsigned int *)get_property(np, "reg", &l); in finish_node_interrupts()
2048 isizep = (unsigned int *)get_property(node, "#interrupt-cells", &l); in finish_node_interrupts()
2055 if (get_property(node, "interrupt-controller", &l)) { in finish_node_interrupts()
2077 map = (unsigned int *)get_property(node, "interrupt-map", &l); in finish_node_interrupts()
2083 map_mask = (unsigned int *)get_property(node, "interrupt-map-mask", &l); in finish_node_interrupts()
2084 asizep = (unsigned int *)get_property(node, "#address-cells", &l); in finish_node_interrupts()
2112 isizep = (unsigned int *)get_property(parent_node, "#interrupt-cells", &l); in finish_node_interrupts()
2115 asizep = (unsigned int *)get_property(parent_node, "#address-cells", &l); in finish_node_interrupts()
2138 parent = (phandle *)get_property(node, "interrupt-parent", &l); in finish_node_interrupts()
2158 ip = (int *) get_property(np, "#address-cells", 0); in prom_n_addr_cells()
2173 ip = (int *) get_property(np, "#size-cells", 0); in prom_n_size_cells()
2190 get_property(np, "assigned-addresses", &l); in interpret_pci_props()
2215 rp = (struct isa_reg_property *) get_property(np, "reg", &l); in interpret_isa_props()
2243 rp = (unsigned int *) get_property(np, "reg", &l); in interpret_root_props()
2348 cp = (char *) get_property(device, "compatible", &cplen); in device_is_compatible()
2434 get_property(struct device_node *np, const char *name, int *lenp) in get_property() function