diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-10-28 13:45:51 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-10-28 13:55:00 +0000 |
commit | 74710b8316b40c9e3081c1014813867d4764796b (patch) | |
tree | ee320e79f8aa9aa21bd2436a8f7463b06f77f041 /src/include/ipxe | |
parent | cc45ca372c9e297c961ee40911753be89f38170a (diff) | |
download | ipxe-74710b8316b40c9e3081c1014813867d4764796b.tar.gz |
[fdt] Add ability to parse unsigned integer properties
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
-rw-r--r-- | src/include/ipxe/fdt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/fdt.h b/src/include/ipxe/fdt.h index 97efa100c..9b9b01b6c 100644 --- a/src/include/ipxe/fdt.h +++ b/src/include/ipxe/fdt.h @@ -96,6 +96,7 @@ struct fdt { extern int fdt_path ( const char *path, unsigned int *offset ); extern int fdt_alias ( const char *name, unsigned int *offset ); extern const char * fdt_string ( unsigned int offset, const char *name ); +extern int fdt_u64 ( unsigned int offset, const char *name, uint64_t *value ); extern int fdt_mac ( unsigned int offset, struct net_device *netdev ); extern int register_fdt ( const struct fdt_header *hdr ); |