Lines Matching refs:propname

38 bool device_property_present(struct device *dev, const char *propname);
39 int device_property_read_u8_array(struct device *dev, const char *propname,
41 int device_property_read_u16_array(struct device *dev, const char *propname,
43 int device_property_read_u32_array(struct device *dev, const char *propname,
45 int device_property_read_u64_array(struct device *dev, const char *propname,
47 int device_property_read_string_array(struct device *dev, const char *propname,
49 int device_property_read_string(struct device *dev, const char *propname,
52 const char *propname, const char *string);
56 const char *propname);
58 const char *propname, u8 *val,
61 const char *propname, u16 *val,
64 const char *propname, u32 *val,
67 const char *propname, u64 *val,
70 const char *propname, const char **val,
73 const char *propname, const char **val);
75 const char *propname, const char *string);
117 const char *propname) in device_property_read_bool() argument
119 return device_property_present(dev, propname); in device_property_read_bool()
123 const char *propname, u8 *val) in device_property_read_u8() argument
125 return device_property_read_u8_array(dev, propname, val, 1); in device_property_read_u8()
129 const char *propname, u16 *val) in device_property_read_u16() argument
131 return device_property_read_u16_array(dev, propname, val, 1); in device_property_read_u16()
135 const char *propname, u32 *val) in device_property_read_u32() argument
137 return device_property_read_u32_array(dev, propname, val, 1); in device_property_read_u32()
141 const char *propname, u64 *val) in device_property_read_u64() argument
143 return device_property_read_u64_array(dev, propname, val, 1); in device_property_read_u64()
147 const char *propname) in fwnode_property_read_bool() argument
149 return fwnode_property_present(fwnode, propname); in fwnode_property_read_bool()
153 const char *propname, u8 *val) in fwnode_property_read_u8() argument
155 return fwnode_property_read_u8_array(fwnode, propname, val, 1); in fwnode_property_read_u8()
159 const char *propname, u16 *val) in fwnode_property_read_u16() argument
161 return fwnode_property_read_u16_array(fwnode, propname, val, 1); in fwnode_property_read_u16()
165 const char *propname, u32 *val) in fwnode_property_read_u32() argument
167 return fwnode_property_read_u32_array(fwnode, propname, val, 1); in fwnode_property_read_u32()
171 const char *propname, u64 *val) in fwnode_property_read_u64() argument
173 return fwnode_property_read_u64_array(fwnode, propname, val, 1); in fwnode_property_read_u64()