dm: core: Support writing a 64-bit value
Add support for writing a single 64-bit value into a property. Repurpose the existing tests to handle this case too. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -1461,6 +1461,16 @@ int ofnode_write_string(ofnode node, const char *propname, const char *value);
|
||||
*/
|
||||
int ofnode_write_u32(ofnode node, const char *propname, u32 value);
|
||||
|
||||
/**
|
||||
* ofnode_write_u64() - Set an integer property of an ofnode
|
||||
*
|
||||
* @node: The node for whose string property should be set
|
||||
* @propname: The name of the string property to set
|
||||
* @value: The new value of the 64-bit integer property
|
||||
* Return: 0 if successful, -ve on error
|
||||
*/
|
||||
int ofnode_write_u64(ofnode node, const char *propname, u64 value);
|
||||
|
||||
/**
|
||||
* ofnode_write_bool() - Set a boolean property of an ofnode
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user