diff options
| author | T Karthik Reddy <[email protected]> | 2019-09-02 16:34:30 +0200 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2019-09-06 10:39:15 +0800 |
| commit | 3f3d77158b8452a16dca4a6966217b344f77f9b7 (patch) | |
| tree | 288f1972b58bbce69e34ccc2fe5c9e328b7f3a17 /include/dm/ofnode.h | |
| parent | d3302395e7b3deef1d7bb3eeb0c904e97ad7937d (diff) | |
dm: core: Add functions to read 64-bit dt properties
This patch adds functions dev_read_u64_default & dev_read_u64
to read unsigned 64-bit values from devicetree.
Signed-off-by: T Karthik Reddy <[email protected]>
Signed-off-by: Michal Simek <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'include/dm/ofnode.h')
| -rw-r--r-- | include/dm/ofnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/ofnode.h b/include/dm/ofnode.h index 4f89db44c19..5c4cbf09986 100644 --- a/include/dm/ofnode.h +++ b/include/dm/ofnode.h @@ -254,7 +254,7 @@ int ofnode_read_u64(ofnode node, const char *propname, u64 *outp); * @def: default value to return if the property has no value * @return property value, or @def if not found */ -int ofnode_read_u64_default(ofnode node, const char *propname, u64 def); +u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def); /** * ofnode_read_string() - Read a string from a property |
