Lines Matching defs:val

141         static inline void fdt_set_##name(void *fdt, uint32_t val) \
144 fdth->name = cpu_to_fdt32(val); \
812 * @val: pointer to data to replace the property value with
816 * the data in val, of length len. This function cannot change the
836 const void *val, int len);
843 * @val: 32-bit integer value to replace the property with
846 * with the 32-bit integer value in val, converting val to big-endian
867 const char *name, uint32_t val)
869 fdt32_t tmp = cpu_to_fdt32(val);
878 * @val: 64-bit integer value to replace the property with
881 * with the 64-bit integer value in val, converting val to big-endian
902 const char *name, uint64_t val)
904 fdt64_t tmp = cpu_to_fdt64(val);
914 const char *name, uint32_t val)
916 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val);
977 int fdt_property(void *fdt, const char *name, const void *val, int len);
978 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val)
980 fdt32_t tmp = cpu_to_fdt32(val);
983 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val)
985 fdt64_t tmp = cpu_to_fdt64(val);
988 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val)
990 return fdt_property_u32(fdt, name, val);
1084 * @val: pointer to data to set the property value to
1108 const void *val, int len);
1115 * @val: 32-bit integer value for the property (native endian)
1139 uint32_t val)
1141 fdt32_t tmp = cpu_to_fdt32(val);
1150 * @val: 64-bit integer value for the property (native endian)
1174 uint64_t val)
1176 fdt64_t tmp = cpu_to_fdt64(val);
1186 uint32_t val)
1188 return fdt_setprop_u32(fdt, nodeoffset, name, val);
1227 * @val: pointer to data to append to the property value
1250 const void *val, int len);
1257 * @val: 32-bit integer value to append to the property (native endian)
1281 const char *name, uint32_t val)
1283 fdt32_t tmp = cpu_to_fdt32(val);
1292 * @val: 64-bit integer value to append to the property (native endian)
1316 const char *name, uint64_t val)
1318 fdt64_t tmp = cpu_to_fdt64(val);
1328 const char *name, uint32_t val)
1330 return fdt_appendprop_u32(fdt, nodeoffset, name, val);