diff options
author | Jiri Slaby <jslaby@suse.cz> | 2014-11-21 13:23:09 +0100 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2014-11-27 17:21:21 +0000 |
commit | e99010edb37f5d5bca6a4d4b78d74cddfc0fc5a4 (patch) | |
tree | 3866f2f66d50f82ca1dce8323902b227cff2b2b3 /drivers/of/base.c | |
parent | 65d473b8007b4ef9f2a5e52f39c52d2141dfd421 (diff) |
of: base, fix of_property_read_string_helper kernel-doc
It referenced of_property_read_string_util whereas the function name
is of_property_read_string_helper.
Introduced in a87fa1d81a9fb5e9adca9820e16008c40ad09f33 (of: Fix
overflow bug in string property parsing functions). Found out when
reviewing the stable 3.12 queue.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/of/base.c')
-rw-r--r-- | drivers/of/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 2d5dfb8b2e65..99bc95e83d09 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -1326,7 +1326,7 @@ int of_property_match_string(struct device_node *np, const char *propname, EXPORT_SYMBOL_GPL(of_property_match_string); /** - * of_property_read_string_util() - Utility helper for parsing string properties + * of_property_read_string_helper() - Utility helper for parsing string properties * @np: device node from which the property value is to be read. * @propname: name of the property to be searched. * @out_strs: output array of string pointers. |