summaryrefslogtreecommitdiffstats
path: root/include/dm/read.h
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-06-22 16:54:05 +0900
committerSimon Glass <sjg@chromium.org>2017-07-11 10:08:20 -0600
commit61e51babdb674e4619165cdc180786af7ec75ae9 (patch)
tree383c6cf77d30ffea66927f25274544a9299a645f /include/dm/read.h
parentcb7dbe1fb017f0a1ad050a9dc91ed2c10cb998e6 (diff)
downloadu-boot-61e51babdb674e4619165cdc180786af7ec75ae9.tar.gz
u-boot-61e51babdb674e4619165cdc180786af7ec75ae9.tar.xz
u-boot-61e51babdb674e4619165cdc180786af7ec75ae9.zip
dm: ofnode: rename ofnode_read_prop() to ofnode_get_property()
This function returns the pointer to the value of a node property. The current name ofnode_read_prop() is confusing. Follow the naming of_get_property() from Linux. The return type (const u32 *) is wrong. DT property values can be strings as well as integers. This is why of_get_property/fdt_getprop returns an opaque pointer. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/read.h')
-rw-r--r--include/dm/read.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/read.h b/include/dm/read.h
index 6dd1634675..b86a2f5fec 100644
--- a/include/dm/read.h
+++ b/include/dm/read.h
@@ -446,7 +446,7 @@ static inline int dev_read_phandle(struct udevice *dev)
static inline const u32 *dev_read_prop(struct udevice *dev,
const char *propname, int *lenp)
{
- return ofnode_read_prop(dev_ofnode(dev), propname, lenp);
+ return ofnode_get_property(dev_ofnode(dev), propname, lenp);
}
static inline int dev_read_alias_seq(struct udevice *dev, int *devnump)