diff options
author | Simon Glass <sjg@chromium.org> | 2022-09-06 20:27:17 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-29 16:11:31 -0400 |
commit | 8909066199281b86bf4ee7673ec6d7983dd12a26 (patch) | |
tree | 8e2b25f62f29ad0e2a9252b41ce1e916b4ecac8d /include | |
parent | 52ad21aa2cc55f53da19436f457a8590abf0d125 (diff) | |
download | u-boot-8909066199281b86bf4ee7673ec6d7983dd12a26.zip u-boot-8909066199281b86bf4ee7673ec6d7983dd12a26.tar.gz u-boot-8909066199281b86bf4ee7673ec6d7983dd12a26.tar.bz2 |
dm: core: Drop ofnode_is_available()
This function is also available as ofnode_is_enabled(), so use that
instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/dm/ofnode.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/dm/ofnode.h b/include/dm/ofnode.h index 7b0ef10..a674d7d 100644 --- a/include/dm/ofnode.h +++ b/include/dm/ofnode.h @@ -873,14 +873,6 @@ const void *ofprop_get_property(const struct ofprop *prop, const char **propname, int *lenp); /** - * ofnode_is_available() - check if a node is marked available - * - * @node: node to check - * Return: true if node's 'status' property is "okay" (or is missing) - */ -bool ofnode_is_available(ofnode node); - -/** * ofnode_get_addr_size() - get address and size from a property * * This does no address translation. It simply reads an property that contains |