diff options
author | Tom Rini | 2017-09-25 17:28:16 -0400 |
---|---|---|
committer | Tom Rini | 2017-09-25 17:28:16 -0400 |
commit | 78cb000b84d478c51326cc816280c25dafe447e6 (patch) | |
tree | 595d96503de8f2f72c1088153361abfee7410260 /include | |
parent | 1f6049e2501b5c35c61435dbc05ba96743202674 (diff) | |
parent | 8ff7763d62d09c541e398239b7e4e3a5e732d273 (diff) |
Merge git://git.denx.de/u-boot-mmc
Diffstat (limited to 'include')
-rw-r--r-- | include/dm/read.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/dm/read.h b/include/dm/read.h index e7f71256a8c..8114037e977 100644 --- a/include/dm/read.h +++ b/include/dm/read.h @@ -166,6 +166,29 @@ int dev_read_stringlist_search(struct udevice *dev, const char *property, const char *string); /** + * dev_read_string_index() - obtain an indexed string from a string list + * + * @dev: device to examine + * @propname: name of the property containing the string list + * @index: index of the string to return + * @out: return location for the string + * + * @return: + * length of string, if found or -ve error value if not found + */ +int dev_read_string_index(struct udevice *dev, const char *propname, int index, + const char **outp); + +/** + * dev_read_string_count() - find the number of strings in a string list + * + * @dev: device to examine + * @propname: name of the property containing the string list + * @return: + * number of strings in the list, or -ve error value if not found + */ +int dev_read_string_count(struct udevice *dev, const char *propname); +/** * dev_read_phandle_with_args() - Find a node pointed by phandle in a list * * This function is useful to parse lists of phandles and their arguments. @@ -451,6 +474,19 @@ static inline int dev_read_stringlist_search(struct udevice *dev, return ofnode_stringlist_search(dev_ofnode(dev), propname, string); } +static inline int dev_read_string_index(struct udevice *dev, + const char *propname, int index, + const char **outp) +{ + return ofnode_read_string_index(dev_ofnode(dev), propname, index, outp); +} + +static inline int dev_read_string_count(struct udevice *dev, + const char *propname) +{ + return ofnode_read_string_count(dev_ofnode(dev), propname); +} + static inline int dev_read_phandle_with_args(struct udevice *dev, const char *list_name, const char *cells_name, int cell_count, int index, struct ofnode_phandle_args *out_args) |