diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2017-03-28 15:22:17 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2017-03-29 01:00:30 +0300 |
commit | 026b821745a7dd4552d43539e70c83d7143b59c8 (patch) | |
tree | 56b62d98dc7a67be34610763b22745f197a82fe6 /drivers/base | |
parent | aef1b7b21b3f6ce448c56594ef7081b18380a2d7 (diff) | |
download | linux-026b821745a7dd4552d43539e70c83d7143b59c8.tar.xz |
device property: fwnode_property_read_string_array() may return -EILSEQ
fwnode_property_read_string_array() may return -EILSEQ through
of_property_read_string_array(). Document this.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/property.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/property.c b/drivers/base/property.c index 627ebc9b570d..c69bde8086cc 100644 --- a/drivers/base/property.c +++ b/drivers/base/property.c @@ -591,7 +591,7 @@ static int __fwnode_property_read_string(struct fwnode_handle *fwnode, * %0 if the property was found (success), * %-EINVAL if given arguments are not valid, * %-ENODATA if the property does not have a value, - * %-EPROTO if the property is not an array of strings, + * %-EPROTO or %-EILSEQ if the property is not an array of strings, * %-EOVERFLOW if the size of the property is not as expected, * %-ENXIO if no suitable firmware interface is present. */ |