Lines Matching refs:prop
149 struct property *prop;
155 prop = dp->properties;
156 if (!prop)
158 len = strlen(prop->name);
160 prop = of_find_property(dp, op->oprom_array, NULL);
162 if (!prop ||
163 !prop->next ||
164 (len = strlen(prop->next->name)) + 1 > bufsize)
167 prop = prop->next;
170 memcpy(op->oprom_array, prop->name, len);
421 struct property *prop;
437 prop = dp->properties;
439 prop = of_find_property(dp, str, NULL);
440 if (prop)
441 prop = prop->next;
445 if (!prop)
448 len = prop->length;
457 copy_to_user(op.op_buf, prop->value, len))