Lines Matching refs:l

94 	unsigned long l, score = 0;  in of_fdt_is_compatible()  local
103 l = strlen(cp) + 1; in of_fdt_is_compatible()
104 cp += l; in of_fdt_is_compatible()
105 cplen -= l; in of_fdt_is_compatible()
183 unsigned int l, allocl; in unflatten_dt_node() local
190 pathp = fdt_get_name(blob, *poffset, &l); in unflatten_dt_node()
194 allocl = ++l; in unflatten_dt_node()
211 l = 1; in unflatten_dt_node()
217 fpsize += l; in unflatten_dt_node()
233 if ((strlen(fn) + l + 1) != allocl) { in unflatten_dt_node()
236 l, allocl); in unflatten_dt_node()
243 memcpy(fn, pathp, l); in unflatten_dt_node()
788 int l; in early_init_dt_scan_chosen_serial() local
798 p = fdt_getprop(fdt, offset, "stdout-path", &l); in early_init_dt_scan_chosen_serial()
800 p = fdt_getprop(fdt, offset, "linux,stdout-path", &l); in early_init_dt_scan_chosen_serial()
801 if (!p || !l) in early_init_dt_scan_chosen_serial()
880 int l; in early_init_dt_scan_memory() local
893 reg = of_get_flat_dt_prop(node, "linux,usable-memory", &l); in early_init_dt_scan_memory()
895 reg = of_get_flat_dt_prop(node, "reg", &l); in early_init_dt_scan_memory()
899 endp = reg + (l / sizeof(__be32)); in early_init_dt_scan_memory()
901 pr_debug("memory scan node %s, reg size %d,\n", uname, l); in early_init_dt_scan_memory()
923 int l; in early_init_dt_scan_chosen() local
935 p = of_get_flat_dt_prop(node, "bootargs", &l); in early_init_dt_scan_chosen()
936 if (p != NULL && l > 0) in early_init_dt_scan_chosen()
937 strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE)); in early_init_dt_scan_chosen()