1/**2* of_property_read_u8_array - Find and read an array of u8 from a property.3*4* @np: device node from which the property value is to be read.5* @propname: name of the property to be searched.6* @out_values: pointer to return value, modified only if return value is 0.7...
15 * property = /bits/ 8 <0x50 0x60 0x70>; 16 * 17 * The out_values is modified only if a valid u8 value can be decoded. 18 */ 19 int of_property_read_u8_array(const struct device_node *np, 20 const char *propname, u8 *out_values, size_t sz) 21 { 22 const u8 *val...