Lines Matching refs:propname
36 bool device_property_present(struct device *dev, const char *propname);
37 int device_property_read_u8_array(struct device *dev, const char *propname,
39 int device_property_read_u16_array(struct device *dev, const char *propname,
41 int device_property_read_u32_array(struct device *dev, const char *propname,
43 int device_property_read_u64_array(struct device *dev, const char *propname,
45 int device_property_read_string_array(struct device *dev, const char *propname,
47 int device_property_read_string(struct device *dev, const char *propname,
50 const char *propname, const char *string);
52 bool fwnode_property_present(struct fwnode_handle *fwnode, const char *propname);
54 const char *propname, u8 *val,
57 const char *propname, u16 *val,
60 const char *propname, u32 *val,
63 const char *propname, u64 *val,
66 const char *propname, const char **val,
69 const char *propname, const char **val);
71 const char *propname, const char *string);
85 const char *propname) in device_property_read_bool() argument
87 return device_property_present(dev, propname); in device_property_read_bool()
91 const char *propname, u8 *val) in device_property_read_u8() argument
93 return device_property_read_u8_array(dev, propname, val, 1); in device_property_read_u8()
97 const char *propname, u16 *val) in device_property_read_u16() argument
99 return device_property_read_u16_array(dev, propname, val, 1); in device_property_read_u16()
103 const char *propname, u32 *val) in device_property_read_u32() argument
105 return device_property_read_u32_array(dev, propname, val, 1); in device_property_read_u32()
109 const char *propname, u64 *val) in device_property_read_u64() argument
111 return device_property_read_u64_array(dev, propname, val, 1); in device_property_read_u64()
115 const char *propname) in fwnode_property_read_bool() argument
117 return fwnode_property_present(fwnode, propname); in fwnode_property_read_bool()
121 const char *propname, u8 *val) in fwnode_property_read_u8() argument
123 return fwnode_property_read_u8_array(fwnode, propname, val, 1); in fwnode_property_read_u8()
127 const char *propname, u16 *val) in fwnode_property_read_u16() argument
129 return fwnode_property_read_u16_array(fwnode, propname, val, 1); in fwnode_property_read_u16()
133 const char *propname, u32 *val) in fwnode_property_read_u32() argument
135 return fwnode_property_read_u32_array(fwnode, propname, val, 1); in fwnode_property_read_u32()
139 const char *propname, u64 *val) in fwnode_property_read_u64() argument
141 return fwnode_property_read_u64_array(fwnode, propname, val, 1); in fwnode_property_read_u64()