fdt_setprop
int fdt_setprop(void *fdt, int nodeoffset, const char *name,
return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
ret = fdt_setprop(fdt, target, name, prop, prop_len);